This is a note experimenting on the robustness to kernel width of LIME and BayLIME

22/07/2020

In [1]:
import sys
sys.path.append("..")# allow the notebook to find the parent folder
from sklearn.datasets import load_boston,load_breast_cancer
import sklearn.ensemble
import sklearn.linear_model
import sklearn.model_selection
import numpy as np
from sklearn.metrics import r2_score
np.random.seed(1)
import lime
import lime.lime_tabular
from lime import submodular_pick
from lime import calculate_posteriors
from scipy import stats
import random
import math
import csv


#load example dataset
boston = load_boston()
#cancer= load_breast_cancer()

#print a description of the variables
print(boston.DESCR)
#print(cancer.DESCR)

#train a regressor
rf = sklearn.ensemble.RandomForestRegressor(n_estimators=1000)
train, test, labels_train, labels_test = sklearn.model_selection.train_test_split(boston.data, boston.target, train_size=0.80, test_size=0.20)
rf.fit(train, labels_train);

#train a classifier
# rf = sklearn.ensemble.RandomForestClassifier(n_estimators=1000)
# train, test, labels_train, labels_test = sklearn.model_selection.train_test_split(cancer.data, cancer.target, train_size=0.80, test_size=0.20)
# rf.fit(train, labels_train);
.. _boston_dataset:

Boston house prices dataset
---------------------------

**Data Set Characteristics:**  

    :Number of Instances: 506 

    :Number of Attributes: 13 numeric/categorical predictive. Median Value (attribute 14) is usually the target.

    :Attribute Information (in order):
        - CRIM     per capita crime rate by town
        - ZN       proportion of residential land zoned for lots over 25,000 sq.ft.
        - INDUS    proportion of non-retail business acres per town
        - CHAS     Charles River dummy variable (= 1 if tract bounds river; 0 otherwise)
        - NOX      nitric oxides concentration (parts per 10 million)
        - RM       average number of rooms per dwelling
        - AGE      proportion of owner-occupied units built prior to 1940
        - DIS      weighted distances to five Boston employment centres
        - RAD      index of accessibility to radial highways
        - TAX      full-value property-tax rate per $10,000
        - PTRATIO  pupil-teacher ratio by town
        - B        1000(Bk - 0.63)^2 where Bk is the proportion of blacks by town
        - LSTAT    % lower status of the population
        - MEDV     Median value of owner-occupied homes in $1000's

    :Missing Attribute Values: None

    :Creator: Harrison, D. and Rubinfeld, D.L.

This is a copy of UCI ML housing dataset.
https://archive.ics.uci.edu/ml/machine-learning-databases/housing/


This dataset was taken from the StatLib library which is maintained at Carnegie Mellon University.

The Boston house-price data of Harrison, D. and Rubinfeld, D.L. 'Hedonic
prices and the demand for clean air', J. Environ. Economics & Management,
vol.5, 81-102, 1978.   Used in Belsley, Kuh & Welsch, 'Regression diagnostics
...', Wiley, 1980.   N.B. Various transformations are used in the table on
pages 244-261 of the latter.

The Boston house-price data has been used in many machine learning papers that address regression
problems.   
     
.. topic:: References

   - Belsley, Kuh & Welsch, 'Regression diagnostics: Identifying Influential Data and Sources of Collinearity', Wiley, 1980. 244-261.
   - Quinlan,R. (1993). Combining Instance-Based and Model-Based Learning. In Proceedings on the Tenth International Conference of Machine Learning, 236-243, University of Massachusetts, Amherst. Morgan Kaufmann.

In [2]:
# generate an "explainer" object
categorical_features  = np.argwhere(np.array([len(set(boston.data[:,x])) for x in range(boston.data.shape[1])]) <= 10).flatten()



# Now you can play with different kernel_width to see how the resutls change...
explainer = lime.lime_tabular.LimeTabularExplainer(train, feature_names=boston.feature_names, 
                                                   class_names=['price'], categorical_features=categorical_features, 
                                                    verbose=False, mode='regression',
                                                   discretize_continuous=False,feature_selection='none',
                                                   sample_around_instance=False,kernel_width=5)



#generate an explanation for testing..
instance = 13
#use rf.predict_proba for classfication 
exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                 model_regressor='non_Bay',
                                 num_samples=1000,
                                 #labels=labels_test[i],
                                 )#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior' 'BayesianRidge_inf_prior_fit_alpha'

exp.show_in_notebook(show_table=True)
#fig = exp.as_pyplot_figure(label=1)


exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                 model_regressor='Bay_info_prior',
                                 num_samples=1000,
                                 #labels=labels_test[i],
                                 )#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior' 'BayesianRidge_inf_prior_fit_alpha'


alpha_init=1
lambda_init=1
with open('.\posterior_configure.csv') as csv_file:
    csv_reader=csv.reader(csv_file)
    line_count = 0
    for row in csv_reader:
        if line_count == 1:
            alpha_init=float(row[0])
            lambda_init=float(row[1])
        line_count=line_count+1
    
exp.show_in_notebook(show_table=True)
using non_Bay option for model regressor
using Bay_info_prior option for model regressor
the alpha is 0.1
the lambda is 20.0
the regulation term lambda/alpha is 200.0
In [3]:
# define the global lipschitz function
def glo_lip (kw1, kw2, f1, f2):
    f1=np.array(f1)
    f2=np.array(f2)
    return np.linalg.norm(f1-f2)/np.linalg.norm(kw1-kw2)
print(glo_lip(2,4,[0.1,0.2,0.4,0.1],[0.2,0.2,0.1,0.1]))
0.158113883008419
In [ ]:
i=1
kw1_s=np.array([])
kw2_s=np.array([])
lip_s=np.array([])
while i<=5000:
    kw1=random.uniform(0.01,5)
    kw1_s=np.append(kw1_s,kw1)
    kw2=random.uniform(0.01,5)
    kw2_s=np.append(kw2_s,kw2)
    
    explainer = lime.lime_tabular.LimeTabularExplainer(train, feature_names=boston.feature_names, 
                                                   class_names=['price'], categorical_features=categorical_features, 
                                                    verbose=False, mode='regression',
                                                   discretize_continuous=False,feature_selection='none',
                                                   sample_around_instance=False,kernel_width=kw1)
    #generate an explanation for testing..
    instance = 13
    #use rf.predict_proba for classfication 
    exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                 model_regressor='Bay_non_info_prior',
                                 num_samples=1000,
                                 #labels=labels_test[i],
                                 )#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior'
    
    temp=exp.as_list()
    temp = sorted(temp, key=lambda a_entry: a_entry[0])
    temp=np.delete(temp,0,axis=1).flatten()
    f1=[float(i) for i in temp]
    
    explainer = lime.lime_tabular.LimeTabularExplainer(train, feature_names=boston.feature_names, 
                                                   class_names=['price'], categorical_features=categorical_features, 
                                                    verbose=False, mode='regression',
                                                   discretize_continuous=False,feature_selection='none',
                                                   sample_around_instance=False,kernel_width=kw2)
    #generate an explanation for testing..
    instance = 13
    #use rf.predict_proba for classfication 
    exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                 model_regressor='Bay_non_info_prior',
                                 num_samples=1000,
                                 #labels=labels_test[i],
                                 )#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior'
    
    temp=exp.as_list()
    temp = sorted(temp, key=lambda a_entry: a_entry[0])
    temp=np.delete(temp,0,axis=1).flatten()
    f2=[float(i) for i in temp]
    
    lip=glo_lip(kw1, kw2, f1, f2)
    lip_s=np.append(lip_s,lip)
    
    i=i+1
    
print(stats.describe(lip_s))
data=np.asarray((kw1_s,kw2_s,lip_s)).T
np.savetxt("./figures/robust_kw/raw_data/3d_plot_Bay_non_info_prior.csv", data, delimiter=",")
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 4.695077376712538
the lambda is 0.5627652495452765
the regulation term lambda/alpha is 0.11986282746618353
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.15531957887662698
the lambda is 0.5050374822719643
the regulation term lambda/alpha is 3.251602186438609
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.20137109320617766
the lambda is 0.4790792794665352
the regulation term lambda/alpha is 2.379086649621655
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.5317214242634074
the lambda is 0.5382310333197349
the regulation term lambda/alpha is 1.0122425179037036
using Bay_non_info_prior option for model regressor
Convergence after  3  iterations
the alpha is 0.15008447188391147
the lambda is 0.4915346840647694
the regulation term lambda/alpha is 3.275053560803849
using Bay_non_info_prior option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 1.0
the regulation term lambda/alpha is 1.999999996e-09
using Bay_non_info_prior option for model regressor
Convergence after  5  iterations
the alpha is 355745915.3591333
the lambda is 0.21808445402704413
the regulation term lambda/alpha is 6.13034316379664e-10
In [ ]:
i=1
kw1_s=np.array([])
kw2_s=np.array([])
lip_s=np.array([])
while i<=5000:
    kw1=random.uniform(0.01,5)
    kw1_s=np.append(kw1_s,kw1)
    kw2=random.uniform(0.01,5)
    kw2_s=np.append(kw2_s,kw2)
    
    explainer = lime.lime_tabular.LimeTabularExplainer(train, feature_names=boston.feature_names, 
                                                   class_names=['price'], categorical_features=categorical_features, 
                                                    verbose=False, mode='regression',
                                                   discretize_continuous=False,feature_selection='none',
                                                   sample_around_instance=False,kernel_width=kw1)
    #generate an explanation for testing..
    instance = 13
    #use rf.predict_proba for classfication 
    exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                 model_regressor='non_Bay',
                                 num_samples=1000,
                                 #labels=labels_test[i],
                                 )#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior' BayesianRidge_inf_prior_fit_alpha
    
    temp=exp.as_list()
    temp = sorted(temp, key=lambda a_entry: a_entry[0])
    temp=np.delete(temp,0,axis=1).flatten()
    f1=[float(i) for i in temp]
    
    explainer = lime.lime_tabular.LimeTabularExplainer(train, feature_names=boston.feature_names, 
                                                   class_names=['price'], categorical_features=categorical_features, 
                                                    verbose=False, mode='regression',
                                                   discretize_continuous=False,feature_selection='none',
                                                   sample_around_instance=False,kernel_width=kw2)
    #generate an explanation for testing..
    instance = 13
    #use rf.predict_proba for classfication 
    exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                 model_regressor='non_Bay',
                                 num_samples=1000,
                                 #labels=labels_test[i],
                                 )#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior' BayesianRidge_inf_prior_fit_alpha
    
    temp=exp.as_list()
    temp = sorted(temp, key=lambda a_entry: a_entry[0])
    temp=np.delete(temp,0,axis=1).flatten()
    f2=[float(i) for i in temp]
    
    lip=glo_lip(kw1, kw2, f1, f2)
    lip_s=np.append(lip_s,lip)
    
    i=i+1
    
print(stats.describe(lip_s))
data=np.asarray((kw1_s,kw2_s,lip_s)).T
np.savetxt("./figures/robust_kw/raw_data/3d_plot_non_Bay.csv", data, delimiter=",")
In [13]:
i=1
kw1_s=np.array([])
kw2_s=np.array([])
lip_s=np.array([])
while i<=5000:
    kw1=random.uniform(0.01,5)
    kw1_s=np.append(kw1_s,kw1)
    kw2=random.uniform(0.01,5)
    kw2_s=np.append(kw2_s,kw2)
    
    explainer = lime.lime_tabular.LimeTabularExplainer(train, feature_names=boston.feature_names, 
                                                   class_names=['price'], categorical_features=categorical_features, 
                                                    verbose=False, mode='regression',
                                                   discretize_continuous=False,feature_selection='none',
                                                   sample_around_instance=False,kernel_width=kw1)
    #generate an explanation for testing..
    instance = 13
    #use rf.predict_proba for classfication 
    exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                 model_regressor='Bay_info_prior',
                                 num_samples=1000,
                                 #labels=labels_test[i],
                                 )#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior' BayesianRidge_inf_prior_fit_alpha
    
    alpha_init=1
    lambda_init=1
    with open('.\posterior_configure.csv') as csv_file:
        csv_reader=csv.reader(csv_file)
        line_count = 0
        for row in csv_reader:
            if line_count == 1:
                alpha_init=float(row[0])
                lambda_init=float(row[1])
            line_count=line_count+1
        
    temp=exp.as_list()
    temp = sorted(temp, key=lambda a_entry: a_entry[0])
    temp=np.delete(temp,0,axis=1).flatten()
    f1=[float(i) for i in temp]
    
    explainer = lime.lime_tabular.LimeTabularExplainer(train, feature_names=boston.feature_names, 
                                                   class_names=['price'], categorical_features=categorical_features, 
                                                    verbose=False, mode='regression',
                                                   discretize_continuous=False,feature_selection='none',
                                                   sample_around_instance=False,kernel_width=kw2)
    #generate an explanation for testing..
    instance = 13
    #use rf.predict_proba for classfication 
    exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                 model_regressor='Bay_info_prior',
                                 num_samples=1000,
                                 #labels=labels_test[i],
                                 )#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior' BayesianRidge_inf_prior_fit_alpha
    
    alpha_init=1
    lambda_init=1
    with open('.\posterior_configure.csv') as csv_file:
        csv_reader=csv.reader(csv_file)
        line_count = 0
        for row in csv_reader:
            if line_count == 1:
                alpha_init=float(row[0])
                lambda_init=float(row[1])
            line_count=line_count+1
    
    
    temp=exp.as_list()
    temp = sorted(temp, key=lambda a_entry: a_entry[0])
    temp=np.delete(temp,0,axis=1).flatten()
    f2=[float(i) for i in temp]
    
    lip=glo_lip(kw1, kw2, f1, f2)
    lip_s=np.append(lip_s,lip)
    
    i=i+1
    
print(stats.describe(lip_s))
data=np.asarray((kw1_s,kw2_s,lip_s)).T
np.savetxt("./figures/robust_kw/raw_data/3d_plot_Bay_info_prior_a1_l200.csv", data, delimiter=",")
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
using Bay_info_prior option for model regressor
the alpha is 1.0
the lambda is 200.0
the regulation term lambda/alpha is 200.0
DescribeResult(nobs=5000, minmax=(0.0, 822.9263370176542), mean=1.5300006570898528, variance=148.08289326388848, skewness=62.08197652804432, kurtosis=4154.858921287211)
In [9]:
i=1
kw1_s=np.array([])
kw2_s=np.array([])
lip_s=np.array([])
while i<=5000:
    kw1=random.uniform(0.01,5)
    kw1_s=np.append(kw1_s,kw1)
    kw2=random.uniform(0.01,5)
    kw2_s=np.append(kw2_s,kw2)
    
    explainer = lime.lime_tabular.LimeTabularExplainer(train, feature_names=boston.feature_names, 
                                                   class_names=['price'], categorical_features=categorical_features, 
                                                    verbose=False, mode='regression',
                                                   discretize_continuous=False,feature_selection='none',
                                                   sample_around_instance=False,kernel_width=kw1)
    #generate an explanation for testing..
    instance = 13
    #use rf.predict_proba for classfication 
    exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                 model_regressor='BayesianRidge_inf_prior_fit_alpha',
                                 num_samples=1000,
                                 #labels=labels_test[i],
                                 )#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior' BayesianRidge_inf_prior_fit_alpha
    
    alpha_init=1
    lambda_init=1
    with open('.\posterior_configure.csv') as csv_file:
        csv_reader=csv.reader(csv_file)
        line_count = 0
        for row in csv_reader:
            if line_count == 1:
                alpha_init=float(row[0])
                lambda_init=float(row[1])
            line_count=line_count+1
        
    temp=exp.as_list()
    temp = sorted(temp, key=lambda a_entry: a_entry[0])
    temp=np.delete(temp,0,axis=1).flatten()
    f1=[float(i) for i in temp]
    
    explainer = lime.lime_tabular.LimeTabularExplainer(train, feature_names=boston.feature_names, 
                                                   class_names=['price'], categorical_features=categorical_features, 
                                                    verbose=False, mode='regression',
                                                   discretize_continuous=False,feature_selection='none',
                                                   sample_around_instance=False,kernel_width=kw2)
    #generate an explanation for testing..
    instance = 13
    #use rf.predict_proba for classfication 
    exp = explainer.explain_instance(test[instance], rf.predict,#num_features=13,
                                 model_regressor='BayesianRidge_inf_prior_fit_alpha',
                                 num_samples=1000,
                                 #labels=labels_test[i],
                                 )#'non_Bay' 'Bay_non_info_prior' 'Bay_info_prior' BayesianRidge_inf_prior_fit_alpha
    
    alpha_init=1
    lambda_init=1
    with open('.\posterior_configure.csv') as csv_file:
        csv_reader=csv.reader(csv_file)
        line_count = 0
        for row in csv_reader:
            if line_count == 1:
                alpha_init=float(row[0])
                lambda_init=float(row[1])
            line_count=line_count+1
    
    
    temp=exp.as_list()
    temp = sorted(temp, key=lambda a_entry: a_entry[0])
    temp=np.delete(temp,0,axis=1).flatten()
    f2=[float(i) for i in temp]
    
    lip=glo_lip(kw1, kw2, f1, f2)
    lip_s=np.append(lip_s,lip)
    
    i=i+1
    
print(stats.describe(lip_s))
data=np.asarray((kw1_s,kw2_s,lip_s)).T
np.savetxt("./figures/robust_kw/raw_data/3d_plot_BayesianRidge_inf_prior_fit_alpha_l200.csv", data, delimiter=",")
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 7709.885285308041
the lambda is 200.0
the regulation term lambda/alpha is 0.025940723188335894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 20.92963971425416
the lambda is 200.0
the regulation term lambda/alpha is 9.555826222072504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07959821231404515
the lambda is 200.0
the regulation term lambda/alpha is 2512.6192433936094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1055844277634519
the lambda is 200.0
the regulation term lambda/alpha is 1894.218723693553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15622587739501267
the lambda is 200.0
the regulation term lambda/alpha is 1280.1976428930893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11241374562078739
the lambda is 200.0
the regulation term lambda/alpha is 1779.1418557893537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12364075093759355
the lambda is 200.0
the regulation term lambda/alpha is 1617.5896578058478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1677446077403406
the lambda is 200.0
the regulation term lambda/alpha is 1192.2886982429202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 92.33064448119862
the lambda is 200.0
the regulation term lambda/alpha is 2.1661280620728927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05624402167516745
the lambda is 200.0
the regulation term lambda/alpha is 3555.9334848969897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99999994
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000001e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.13277626657566
the lambda is 200.0
the regulation term lambda/alpha is 48.39361898623083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.797182479660089
the lambda is 200.0
the regulation term lambda/alpha is 15.628440113117172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  39  iterations
the alpha is 111703.95282389244
the lambda is 200.0
the regulation term lambda/alpha is 0.0017904469353498282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09948424271268927
the lambda is 200.0
the regulation term lambda/alpha is 2010.3686226732457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1359993952433386
the lambda is 200.0
the regulation term lambda/alpha is 1470.5947746469574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.050145301397798
the lambda is 200.0
the regulation term lambda/alpha is 97.5540611017371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11733381008854929
the lambda is 200.0
the regulation term lambda/alpha is 1704.5385285712987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499794342.30772597
the lambda is 200.0
the regulation term lambda/alpha is 4.001645938538035e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2786255581300704
the lambda is 200.0
the regulation term lambda/alpha is 717.8092395480613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 172.11695407324547
the lambda is 200.0
the regulation term lambda/alpha is 1.1620005773219106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06770055863907054
the lambda is 200.0
the regulation term lambda/alpha is 2954.1853718852235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07770533545182702
the lambda is 200.0
the regulation term lambda/alpha is 2573.8258362450397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0597045034355248
the lambda is 200.0
the regulation term lambda/alpha is 3349.831059494214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07968460001922939
the lambda is 200.0
the regulation term lambda/alpha is 2509.895261465029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 99553.56722995061
the lambda is 200.0
the regulation term lambda/alpha is 0.0020089686945926953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14570125249407767
the lambda is 200.0
the regulation term lambda/alpha is 1372.6717964084037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1761006147332629
the lambda is 200.0
the regulation term lambda/alpha is 1135.7143772776553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 120.1143528109027
the lambda is 200.0
the regulation term lambda/alpha is 1.6650799452323746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 23.042225643398304
the lambda is 200.0
the regulation term lambda/alpha is 8.67971710264459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1582596018650302
the lambda is 200.0
the regulation term lambda/alpha is 1263.746386589343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 19.166661081314338
the lambda is 200.0
the regulation term lambda/alpha is 10.43478564949327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09363051635935067
the lambda is 200.0
the regulation term lambda/alpha is 2136.055719616102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.014132848369089
the lambda is 200.0
the regulation term lambda/alpha is 49.823961377177255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 322.87796187520667
the lambda is 200.0
the regulation term lambda/alpha is 0.6194290834792268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3538014763141738
the lambda is 200.0
the regulation term lambda/alpha is 565.2887661282709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06259822227194951
the lambda is 200.0
the regulation term lambda/alpha is 3194.9789106011194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6202830436728709
the lambda is 200.0
the regulation term lambda/alpha is 322.43344718202127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5025681235438727
the lambda is 200.0
the regulation term lambda/alpha is 397.9559996557175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12537664295685563
the lambda is 200.0
the regulation term lambda/alpha is 1595.1934529689363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7426586319405872
the lambda is 200.0
the regulation term lambda/alpha is 114.76717030763753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.058998296065368466
the lambda is 200.0
the regulation term lambda/alpha is 3389.9284104477456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0754319120080178
the lambda is 200.0
the regulation term lambda/alpha is 2651.3977264521895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4806312951487559
the lambda is 200.0
the regulation term lambda/alpha is 416.1193871865955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061133779534816884
the lambda is 200.0
the regulation term lambda/alpha is 3271.513744477324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18187926700881787
the lambda is 200.0
the regulation term lambda/alpha is 1099.6305587173033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.825654584897275
the lambda is 200.0
the regulation term lambda/alpha is 34.330906009856854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.568886225401299
the lambda is 200.0
the regulation term lambda/alpha is 20.90107409460942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.61540849671219
the lambda is 200.0
the regulation term lambda/alpha is 11.353696398089708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8769204088497611
the lambda is 200.0
the regulation term lambda/alpha is 228.07086935328144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 273541941.4613575
the lambda is 200.0
the regulation term lambda/alpha is 7.311493035822204e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.54134188793626
the lambda is 200.0
the regulation term lambda/alpha is 18.972916553335995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.51994926
the lambda is 200.0
the regulation term lambda/alpha is 3.999999995840406e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.696123160524813
the lambda is 200.0
the regulation term lambda/alpha is 117.91596545271875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.058794976795594
the lambda is 200.0
the regulation term lambda/alpha is 3401.6511426701964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16426525832825248
the lambda is 200.0
the regulation term lambda/alpha is 1217.5429061228426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.478838478254192
the lambda is 200.0
the regulation term lambda/alpha is 44.654434619834305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18580884955520663
the lambda is 200.0
the regulation term lambda/alpha is 1076.3749976320528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08235240644667462
the lambda is 200.0
the regulation term lambda/alpha is 2428.587197746375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 274.8892304798703
the lambda is 200.0
the regulation term lambda/alpha is 0.7275657895031492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11338287612583219
the lambda is 200.0
the regulation term lambda/alpha is 1763.9347918643396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07852559408030207
the lambda is 200.0
the regulation term lambda/alpha is 2546.940298159036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16896177069487928
the lambda is 200.0
the regulation term lambda/alpha is 1183.699716080576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5099532252422561
the lambda is 200.0
the regulation term lambda/alpha is 392.1928327936134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05681147867871738
the lambda is 200.0
the regulation term lambda/alpha is 3520.4153218938072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11462992448635445
the lambda is 200.0
the regulation term lambda/alpha is 1744.7451081921283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499996064.3457351
the lambda is 200.0
the regulation term lambda/alpha is 4.0000314854819514e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41659254159552317
the lambda is 200.0
the regulation term lambda/alpha is 480.0854072759263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1404.7202994526497
the lambda is 200.0
the regulation term lambda/alpha is 0.1423770981866854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31811775262018277
the lambda is 200.0
the regulation term lambda/alpha is 628.6980162304565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  77  iterations
the alpha is 119355479.32201861
the lambda is 200.0
the regulation term lambda/alpha is 1.6756666818823134e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99999994
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000001e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 15.420766387412051
the lambda is 200.0
the regulation term lambda/alpha is 12.969524015567716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23574600254787512
the lambda is 200.0
the regulation term lambda/alpha is 848.3706948939002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5248984959726113
the lambda is 200.0
the regulation term lambda/alpha is 381.02604891143716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.5628881371752876
the lambda is 200.0
the regulation term lambda/alpha is 78.0369603725397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999998.90111697
the lambda is 200.0
the regulation term lambda/alpha is 4.000000008791064e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06165311287809241
the lambda is 200.0
the regulation term lambda/alpha is 3243.9562361670673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09534624247958796
the lambda is 200.0
the regulation term lambda/alpha is 2097.6180581297335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09001149946105291
the lambda is 200.0
the regulation term lambda/alpha is 2221.938321186817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2359067395178007
the lambda is 200.0
the regulation term lambda/alpha is 89.44916908436545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499791946.1993299
the lambda is 200.0
the regulation term lambda/alpha is 4.0016651232758127e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 8248156.420761142
the lambda is 200.0
the regulation term lambda/alpha is 2.4247842766001273e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16846266235868593
the lambda is 200.0
the regulation term lambda/alpha is 1187.2066913804654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06537370828330688
the lambda is 200.0
the regulation term lambda/alpha is 3059.333870632972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06264008974960569
the lambda is 200.0
the regulation term lambda/alpha is 3192.8434457784115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06860546495044183
the lambda is 200.0
the regulation term lambda/alpha is 2915.2196569832004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 11.889790247027372
the lambda is 200.0
the regulation term lambda/alpha is 16.82115460783701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13890396673497393
the lambda is 200.0
the regulation term lambda/alpha is 1439.843689860896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 350696172.0941071
the lambda is 200.0
the regulation term lambda/alpha is 5.702942202241411e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 471517519.3398631
the lambda is 200.0
the regulation term lambda/alpha is 4.241623943899375e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08770814007559023
the lambda is 200.0
the regulation term lambda/alpha is 2280.2900600518074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0688029179183828
the lambda is 200.0
the regulation term lambda/alpha is 2906.8534598670544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.059889382678993075
the lambda is 200.0
the regulation term lambda/alpha is 3339.4900907895385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3930350438419264
the lambda is 200.0
the regulation term lambda/alpha is 508.8604772872045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09173093827225282
the lambda is 200.0
the regulation term lambda/alpha is 2180.2894832102343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07615318766599605
the lambda is 200.0
the regulation term lambda/alpha is 2626.2853352533275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.062084294939185075
the lambda is 200.0
the regulation term lambda/alpha is 3221.426613540684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9972983
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992021614e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07954673492721151
the lambda is 200.0
the regulation term lambda/alpha is 2514.2452444215105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23023248959020934
the lambda is 200.0
the regulation term lambda/alpha is 868.6871273293351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 10.850010729338823
the lambda is 200.0
the regulation term lambda/alpha is 18.433161495333156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06858004410635654
the lambda is 200.0
the regulation term lambda/alpha is 2916.3002533190615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12031569163416966
the lambda is 200.0
the regulation term lambda/alpha is 1662.2935652326832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 285531938.5103694
the lambda is 200.0
the regulation term lambda/alpha is 7.004470359547423e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09393622836631527
the lambda is 200.0
the regulation term lambda/alpha is 2129.104004687911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 113550.67352863279
the lambda is 200.0
the regulation term lambda/alpha is 0.0017613281699255467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12898975486299485
the lambda is 200.0
the regulation term lambda/alpha is 1550.5107379452575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13557316867844926
the lambda is 200.0
the regulation term lambda/alpha is 1475.2181567309788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 350.0046789926858
the lambda is 200.0
the regulation term lambda/alpha is 0.5714209323589629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12202512843112513
the lambda is 200.0
the regulation term lambda/alpha is 1639.006674866041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23699999114648304
the lambda is 200.0
the regulation term lambda/alpha is 843.8818880646523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1897129353557375
the lambda is 200.0
the regulation term lambda/alpha is 1054.2243712848197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 35416891.63407408
the lambda is 200.0
the regulation term lambda/alpha is 5.647022953521503e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09095422859745196
the lambda is 200.0
the regulation term lambda/alpha is 2198.9082100312917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09948135842950151
the lambda is 200.0
the regulation term lambda/alpha is 2010.426909698183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0129308054769948
the lambda is 200.0
the regulation term lambda/alpha is 197.44685314987422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14681011409537825
the lambda is 200.0
the regulation term lambda/alpha is 1362.3039613610397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6987880211503379
the lambda is 200.0
the regulation term lambda/alpha is 286.20982894177547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 105006.38410776961
the lambda is 200.0
the regulation term lambda/alpha is 0.0019046461003241195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5426776667797399
the lambda is 200.0
the regulation term lambda/alpha is 368.5428980094279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15433558350494292
the lambda is 200.0
the regulation term lambda/alpha is 1295.877434471193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05505580993015418
the lambda is 200.0
the regulation term lambda/alpha is 3632.677464081036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060588569452087446
the lambda is 200.0
the regulation term lambda/alpha is 3300.9526682777528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.8109546585376393
the lambda is 200.0
the regulation term lambda/alpha is 52.480288515619634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17167954287333126
the lambda is 200.0
the regulation term lambda/alpha is 1164.9611634134194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 78.55018837789616
the lambda is 200.0
the regulation term lambda/alpha is 2.5461428435769293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 7628998.4005724685
the lambda is 200.0
the regulation term lambda/alpha is 2.6215761165317887e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35788433893509475
the lambda is 200.0
the regulation term lambda/alpha is 558.83976536976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25331221904603957
the lambda is 200.0
the regulation term lambda/alpha is 789.5394890668497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08119683726987553
the lambda is 200.0
the regulation term lambda/alpha is 2463.150126589981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 109.75295012269405
the lambda is 200.0
the regulation term lambda/alpha is 1.8222744789676977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07419278727225849
the lambda is 200.0
the regulation term lambda/alpha is 2695.679827556259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9435085
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992451932e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18545126269038176
the lambda is 200.0
the regulation term lambda/alpha is 1078.4504623940359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.18648559582676
the lambda is 200.0
the regulation term lambda/alpha is 91.47098905281167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.665913435652804
the lambda is 200.0
the regulation term lambda/alpha is 14.634952939056594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.107404634150363
the lambda is 200.0
the regulation term lambda/alpha is 1862.1170453409534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1531.742035885738
the lambda is 200.0
the regulation term lambda/alpha is 0.13057028880476532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05940075550111489
the lambda is 200.0
the regulation term lambda/alpha is 3366.960543056497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.472290920754599
the lambda is 200.0
the regulation term lambda/alpha is 19.098017951700356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11785456555931771
the lambda is 200.0
the regulation term lambda/alpha is 1697.006807083239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.40701361823542226
the lambda is 200.0
the regulation term lambda/alpha is 491.3840496715696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061421068247579556
the lambda is 200.0
the regulation term lambda/alpha is 3256.2116828354165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23691721099526353
the lambda is 200.0
the regulation term lambda/alpha is 844.1767449474088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0765196011367064
the lambda is 200.0
the regulation term lambda/alpha is 2613.7093898684757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 183.66076538938196
the lambda is 200.0
the regulation term lambda/alpha is 1.0889642084196751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.1688220846781054
the lambda is 200.0
the regulation term lambda/alpha is 92.21595510896128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.94568787459505
the lambda is 200.0
the regulation term lambda/alpha is 18.272035736027167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6544251652706065
the lambda is 200.0
the regulation term lambda/alpha is 305.6117194351771
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24540633134872053
the lambda is 200.0
the regulation term lambda/alpha is 814.9748985726106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10639868726661167
the lambda is 200.0
the regulation term lambda/alpha is 1879.7224396090908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0704355912209093
the lambda is 200.0
the regulation term lambda/alpha is 2839.47357483994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.9429231555122828
the lambda is 200.0
the regulation term lambda/alpha is 212.10636182896747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.19157458968410748
the lambda is 200.0
the regulation term lambda/alpha is 1043.979790481532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.644505020557451
the lambda is 200.0
the regulation term lambda/alpha is 35.43269060291278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1958328751204877
the lambda is 200.0
the regulation term lambda/alpha is 1021.278985343745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7978961201622967
the lambda is 200.0
the regulation term lambda/alpha is 250.6591960358434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06030822584037361
the lambda is 200.0
the regulation term lambda/alpha is 3316.29719185188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 125.06271308175097
the lambda is 200.0
the regulation term lambda/alpha is 1.599197675083732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06927221095285724
the lambda is 200.0
the regulation term lambda/alpha is 2887.160626879785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10039641321300109
the lambda is 200.0
the regulation term lambda/alpha is 1992.1030403315294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 490888258.68992305
the lambda is 200.0
the regulation term lambda/alpha is 4.0742469688266267e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11382349351201168
the lambda is 200.0
the regulation term lambda/alpha is 1757.1064973409395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061947225915677695
the lambda is 200.0
the regulation term lambda/alpha is 3228.5545808336788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1734782354109137
the lambda is 200.0
the regulation term lambda/alpha is 1152.8823747040362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1889716.876495484
the lambda is 200.0
the regulation term lambda/alpha is 0.00010583596013118316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22296044093427927
the lambda is 200.0
the regulation term lambda/alpha is 897.0201133525422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999848.1044349
the lambda is 200.0
the regulation term lambda/alpha is 4.00000121516489e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.1375022391702725
the lambda is 200.0
the regulation term lambda/alpha is 175.8238297147317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32175940653147456
the lambda is 200.0
the regulation term lambda/alpha is 621.5824493088626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.730972137619747
the lambda is 200.0
the regulation term lambda/alpha is 42.27460956906507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  29  iterations
the alpha is 36634141.95092267
the lambda is 200.0
the regulation term lambda/alpha is 5.459388137654e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06774178495833179
the lambda is 200.0
the regulation term lambda/alpha is 2952.387512714947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.591903424736338
the lambda is 200.0
the regulation term lambda/alpha is 125.63576212742012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06427802305489572
the lambda is 200.0
the regulation term lambda/alpha is 3111.4833732392935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07630060942147973
the lambda is 200.0
the regulation term lambda/alpha is 2621.2110429578966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12427735696773895
the lambda is 200.0
the regulation term lambda/alpha is 1609.3036163612478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10405315922192805
the lambda is 200.0
the regulation term lambda/alpha is 1922.09445148545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.989855221024234
the lambda is 200.0
the regulation term lambda/alpha is 202.04975005643126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 11.322159702985687
the lambda is 200.0
the regulation term lambda/alpha is 17.66447438003011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2245345014490845
the lambda is 200.0
the regulation term lambda/alpha is 890.7317080860826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08360723952887544
the lambda is 200.0
the regulation term lambda/alpha is 2392.1373451269847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8350276078091019
the lambda is 200.0
the regulation term lambda/alpha is 239.5130390056787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09156573398112504
the lambda is 200.0
the regulation term lambda/alpha is 2184.223194685767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06277001985323742
the lambda is 200.0
the regulation term lambda/alpha is 3186.2344550411167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14727266113442103
the lambda is 200.0
the regulation term lambda/alpha is 1358.0253012298924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999977.4860969
the lambda is 200.0
the regulation term lambda/alpha is 4.000000180111233e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07988768067241396
the lambda is 200.0
the regulation term lambda/alpha is 2503.5149138966312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09964936312348124
the lambda is 200.0
the regulation term lambda/alpha is 2007.0374132965458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 99.79130854520344
the lambda is 200.0
the regulation term lambda/alpha is 2.0041825577365193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11629474614976218
the lambda is 200.0
the regulation term lambda/alpha is 1719.7681462105243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13060585263231547
the lambda is 200.0
the regulation term lambda/alpha is 1531.3249442430767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.7193429559999
the lambda is 200.0
the regulation term lambda/alpha is 20.577522668498585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23918872162690694
the lambda is 200.0
the regulation term lambda/alpha is 836.1598265990377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4272512627373501
the lambda is 200.0
the regulation term lambda/alpha is 140.12949592100307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 10983.230368937602
the lambda is 200.0
the regulation term lambda/alpha is 0.018209578901816827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999445.0453303
the lambda is 200.0
the regulation term lambda/alpha is 4.0000044396422853e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1717934979670883
the lambda is 200.0
the regulation term lambda/alpha is 1164.188414385249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08413979707294504
the lambda is 200.0
the regulation term lambda/alpha is 2376.996462525455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10826496753685667
the lambda is 200.0
the regulation term lambda/alpha is 1847.3196321045766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6312475558427603
the lambda is 200.0
the regulation term lambda/alpha is 316.8329099238821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10918684469413703
the lambda is 200.0
the regulation term lambda/alpha is 1831.722498807032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.093013114805803
the lambda is 200.0
the regulation term lambda/alpha is 2150.2344096052375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06810614976626628
the lambda is 200.0
the regulation term lambda/alpha is 2936.5923736164896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499878827.6300783
the lambda is 200.0
the regulation term lambda/alpha is 4.000969613940212e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10132416447047009
the lambda is 200.0
the regulation term lambda/alpha is 1973.8628099744951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 266639974.60027474
the lambda is 200.0
the regulation term lambda/alpha is 7.500750789517737e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10416864686807928
the lambda is 200.0
the regulation term lambda/alpha is 1919.9635016213945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7676120675593231
the lambda is 200.0
the regulation term lambda/alpha is 260.54827490650865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7078662257560542
the lambda is 200.0
the regulation term lambda/alpha is 282.53926055927445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 11401.614217268061
the lambda is 200.0
the regulation term lambda/alpha is 0.01754137582528397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07051312416992128
the lambda is 200.0
the regulation term lambda/alpha is 2836.3514218720975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.62975830688838
the lambda is 200.0
the regulation term lambda/alpha is 20.76895324121848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 97.69229584840494
the lambda is 200.0
the regulation term lambda/alpha is 2.0472443426895417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3162896959160413
the lambda is 200.0
the regulation term lambda/alpha is 151.94223628774563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 49162.909682400335
the lambda is 200.0
the regulation term lambda/alpha is 0.004068107467438961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0641511540483699
the lambda is 200.0
the regulation term lambda/alpha is 3117.6368214545328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1539.1871894660617
the lambda is 200.0
the regulation term lambda/alpha is 0.1299387113983058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1195.1907605412978
the lambda is 200.0
the regulation term lambda/alpha is 0.16733730430564966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  34  iterations
the alpha is 134969990.144188
the lambda is 200.0
the regulation term lambda/alpha is 1.481810880969471e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06387550235906267
the lambda is 200.0
the regulation term lambda/alpha is 3131.090834726311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3719516621571972
the lambda is 200.0
the regulation term lambda/alpha is 145.77773074419304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060699106673643484
the lambda is 200.0
the regulation term lambda/alpha is 3294.9414078748405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06229960004883097
the lambda is 200.0
the regulation term lambda/alpha is 3210.2934825141456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0653009201120876
the lambda is 200.0
the regulation term lambda/alpha is 3062.7439805856393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.08261965816325
the lambda is 200.0
the regulation term lambda/alpha is 48.988153868337314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 318086790.63347805
the lambda is 200.0
the regulation term lambda/alpha is 6.287592125460314e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 86281.1355974673
the lambda is 200.0
the regulation term lambda/alpha is 0.002318003797876193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 1498835.4619981376
the lambda is 200.0
the regulation term lambda/alpha is 0.00013343692824919866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.110354202121535
the lambda is 200.0
the regulation term lambda/alpha is 1812.3460290142511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06651207327576526
the lambda is 200.0
the regulation term lambda/alpha is 3006.9728719894406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05925976808065079
the lambda is 200.0
the regulation term lambda/alpha is 3374.971021280507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25756656299415415
the lambda is 200.0
the regulation term lambda/alpha is 776.4983065932331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.00025337045019
the lambda is 200.0
the regulation term lambda/alpha is 12.499802057470339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 46.77790565629073
the lambda is 200.0
the regulation term lambda/alpha is 4.275522753616564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3666473263237116
the lambda is 200.0
the regulation term lambda/alpha is 545.4833177302941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18315718731482059
the lambda is 200.0
the regulation term lambda/alpha is 1091.9582405260956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 312461818.54264736
the lambda is 200.0
the regulation term lambda/alpha is 6.40078205179819e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.338353882155569
the lambda is 200.0
the regulation term lambda/alpha is 59.90976602841768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11552675715598647
the lambda is 200.0
the regulation term lambda/alpha is 1731.2006752682942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.784314870339731
the lambda is 200.0
the regulation term lambda/alpha is 20.440879371766947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1575698687106873
the lambda is 200.0
the regulation term lambda/alpha is 1269.2782042435938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07905803983023522
the lambda is 200.0
the regulation term lambda/alpha is 2529.786982190157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.087982029103115
the lambda is 200.0
the regulation term lambda/alpha is 48.923894130689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 201019.21824578565
the lambda is 200.0
the regulation term lambda/alpha is 0.0009949297472416818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11257093595427058
the lambda is 200.0
the regulation term lambda/alpha is 1776.6575209185924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.564278394677398
the lambda is 200.0
the regulation term lambda/alpha is 127.85447953543213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08117110696258832
the lambda is 200.0
the regulation term lambda/alpha is 2463.930916849265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2632980416052324
the lambda is 200.0
the regulation term lambda/alpha is 759.5954712791357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7305607901436612
the lambda is 200.0
the regulation term lambda/alpha is 273.7622969892362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7237571710815243
the lambda is 200.0
the regulation term lambda/alpha is 276.3357766820274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 20.69609202062013
the lambda is 200.0
the regulation term lambda/alpha is 9.663660163509808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08446818581727508
the lambda is 200.0
the regulation term lambda/alpha is 2367.7553633346392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8646900977090546
the lambda is 200.0
the regulation term lambda/alpha is 107.2564284251408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15932370814015606
the lambda is 200.0
the regulation term lambda/alpha is 1255.3059575042107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0738287367599922
the lambda is 200.0
the regulation term lambda/alpha is 2708.972261711242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07454386600426113
the lambda is 200.0
the regulation term lambda/alpha is 2682.9840028496437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999630.13457805
the lambda is 200.0
the regulation term lambda/alpha is 4.0000029589255646e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07109422870914982
the lambda is 200.0
the regulation term lambda/alpha is 2813.167870745323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 27669.646680537215
the lambda is 200.0
the regulation term lambda/alpha is 0.007228137110282643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.5707765320438285
the lambda is 200.0
the regulation term lambda/alpha is 77.79750495893754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09169390098446914
the lambda is 200.0
the regulation term lambda/alpha is 2181.17015256964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08239058671704434
the lambda is 200.0
the regulation term lambda/alpha is 2427.4617765117277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07404644050591686
the lambda is 200.0
the regulation term lambda/alpha is 2701.0076194549624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06419479772804365
the lambda is 200.0
the regulation term lambda/alpha is 3115.5172549539716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08205070673521969
the lambda is 200.0
the regulation term lambda/alpha is 2437.5170910520796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 379684045.5664884
the lambda is 200.0
the regulation term lambda/alpha is 5.267537636499846e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15623992734174091
the lambda is 200.0
the regulation term lambda/alpha is 1280.082520536146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29787940674173313
the lambda is 200.0
the regulation term lambda/alpha is 671.4126437528581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.668092730481304
the lambda is 200.0
the regulation term lambda/alpha is 26.082105033104703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07307858697507275
the lambda is 200.0
the regulation term lambda/alpha is 2736.779791161266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14264654003021565
the lambda is 200.0
the regulation term lambda/alpha is 1402.0669548496278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 812.30137406766
the lambda is 200.0
the regulation term lambda/alpha is 0.24621403629847996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12709293908571365
the lambda is 200.0
the regulation term lambda/alpha is 1573.651545386928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.287429569682067
the lambda is 200.0
the regulation term lambda/alpha is 27.444519097935586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 35.0826818915745
the lambda is 200.0
the regulation term lambda/alpha is 5.700818444214558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8742313436110921
the lambda is 200.0
the regulation term lambda/alpha is 228.77239698805786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06655022820305205
the lambda is 200.0
the regulation term lambda/alpha is 3005.2488984677566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.055563385121620484
the lambda is 200.0
the regulation term lambda/alpha is 3599.492715611692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05473414891615341
the lambda is 200.0
the regulation term lambda/alpha is 3654.0259410332224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11897209851363943
the lambda is 200.0
the regulation term lambda/alpha is 1681.0664222844755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11996564170361017
the lambda is 200.0
the regulation term lambda/alpha is 1667.1440018978478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07562208519360447
the lambda is 200.0
the regulation term lambda/alpha is 2644.7300347242267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.561259406824502
the lambda is 200.0
the regulation term lambda/alpha is 56.15990781708758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05190965828733902
the lambda is 200.0
the regulation term lambda/alpha is 3852.8475547445632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 114.37157660023429
the lambda is 200.0
the regulation term lambda/alpha is 1.7486862203453293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  22  iterations
the alpha is 39924711.93422439
the lambda is 200.0
the regulation term lambda/alpha is 5.009428755040193e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 155609271.4989556
the lambda is 200.0
the regulation term lambda/alpha is 1.2852704602588048e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 497653463.88502526
the lambda is 200.0
the regulation term lambda/alpha is 4.018860804035451e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26642534016167796
the lambda is 200.0
the regulation term lambda/alpha is 750.6793455856402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 13667644.641927572
the lambda is 200.0
the regulation term lambda/alpha is 1.4633099209096327e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0849410132672707
the lambda is 200.0
the regulation term lambda/alpha is 2354.575161126122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9951664328616205
the lambda is 200.0
the regulation term lambda/alpha is 200.97140879731654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08041787483775491
the lambda is 200.0
the regulation term lambda/alpha is 2487.009267572726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4508158270992413
the lambda is 200.0
the regulation term lambda/alpha is 443.6401474342483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059806691813472146
the lambda is 200.0
the regulation term lambda/alpha is 3344.107388915093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 250.11874220230365
the lambda is 200.0
the regulation term lambda/alpha is 0.7996202053432442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8374278989171128
the lambda is 200.0
the regulation term lambda/alpha is 238.82653092716663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.136782677115428
the lambda is 200.0
the regulation term lambda/alpha is 1462.1734580558345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.706338759024434
the lambda is 200.0
the regulation term lambda/alpha is 25.95266134204027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0710330718708777
the lambda is 200.0
the regulation term lambda/alpha is 2815.589903862745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12243723282034137
the lambda is 200.0
the regulation term lambda/alpha is 1633.4900372460277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0790354765716669
the lambda is 200.0
the regulation term lambda/alpha is 2530.509192522503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05748209082803045
the lambda is 200.0
the regulation term lambda/alpha is 3479.34455965322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0823233602753046
the lambda is 200.0
the regulation term lambda/alpha is 2429.4440767622077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05958150744854892
the lambda is 200.0
the regulation term lambda/alpha is 3356.7462215135834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 273.01211270074515
the lambda is 200.0
the regulation term lambda/alpha is 0.7325682293782496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08789952348541089
the lambda is 200.0
the regulation term lambda/alpha is 2275.3251902804113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34742130697378665
the lambda is 200.0
the regulation term lambda/alpha is 575.6699315367271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7726948172053368
the lambda is 200.0
the regulation term lambda/alpha is 258.83440078368193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2673595826533065
the lambda is 200.0
the regulation term lambda/alpha is 748.0562245616093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.3965025720426727
the lambda is 200.0
the regulation term lambda/alpha is 58.88410085310757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 191.065195846144
the lambda is 200.0
the regulation term lambda/alpha is 1.0467631172401004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 373102122.11269975
the lambda is 200.0
the regulation term lambda/alpha is 5.360462676210341e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22493042689885753
the lambda is 200.0
the regulation term lambda/alpha is 889.163830600527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 2812.4787303749513
the lambda is 200.0
the regulation term lambda/alpha is 0.0711116488953275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09860862762961088
the lambda is 200.0
the regulation term lambda/alpha is 2028.2200939985764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.49724101018012173
the lambda is 200.0
the regulation term lambda/alpha is 402.2194386733136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11761873136472643
the lambda is 200.0
the regulation term lambda/alpha is 1700.409430363738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.3947752663344306
the lambda is 200.0
the regulation term lambda/alpha is 58.91406184773862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.635483721429216
the lambda is 200.0
the regulation term lambda/alpha is 20.756612307403113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2634838899264612
the lambda is 200.0
the regulation term lambda/alpha is 759.059690730315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6350127118681325
the lambda is 200.0
the regulation term lambda/alpha is 314.95432494827327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06142916071963788
the lambda is 200.0
the regulation term lambda/alpha is 3255.7827204053488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0612437507444836
the lambda is 200.0
the regulation term lambda/alpha is 3265.6393112568235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07839471508099868
the lambda is 200.0
the regulation term lambda/alpha is 2551.1923832283437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06012078726169459
the lambda is 200.0
the regulation term lambda/alpha is 3326.636411619782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28941100898214256
the lambda is 200.0
the regulation term lambda/alpha is 691.0587150896548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17643329940644176
the lambda is 200.0
the regulation term lambda/alpha is 1133.5728610916506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06846134610917133
the lambda is 200.0
the regulation term lambda/alpha is 2921.356522570731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39564462802543016
the lambda is 200.0
the regulation term lambda/alpha is 505.50414648153634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13445323979531024
the lambda is 200.0
the regulation term lambda/alpha is 1487.5059931949372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09564260272407524
the lambda is 200.0
the regulation term lambda/alpha is 2091.1183332911937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10276762480976191
the lambda is 200.0
the regulation term lambda/alpha is 1946.1381964429909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08200061130590348
the lambda is 200.0
the regulation term lambda/alpha is 2439.006207574472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8115785839668956
the lambda is 200.0
the regulation term lambda/alpha is 110.40095183839662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38782245024135464
the lambda is 200.0
the regulation term lambda/alpha is 515.6999030755786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06333857898047343
the lambda is 200.0
the regulation term lambda/alpha is 3157.6332026908553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999972.8518457
the lambda is 200.0
the regulation term lambda/alpha is 4.000000217185246e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 70.86680815132907
the lambda is 200.0
the regulation term lambda/alpha is 2.8221956825389927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5767450004483817
the lambda is 200.0
the regulation term lambda/alpha is 346.7737038804203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06316687135137393
the lambda is 200.0
the regulation term lambda/alpha is 3166.216653148357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07069267354433625
the lambda is 200.0
the regulation term lambda/alpha is 2829.1474911408777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10356960554633293
the lambda is 200.0
the regulation term lambda/alpha is 1931.068472695186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 24.85471417770845
the lambda is 200.0
the regulation term lambda/alpha is 8.046763224474125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13487956750485522
the lambda is 200.0
the regulation term lambda/alpha is 1482.804280142733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4872591474967142
the lambda is 200.0
the regulation term lambda/alpha is 410.4592002582131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07944133115464203
the lambda is 200.0
the regulation term lambda/alpha is 2517.5811771164326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499594275.0330773
the lambda is 200.0
the regulation term lambda/alpha is 4.003248435678298e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 397125252.11193985
the lambda is 200.0
the regulation term lambda/alpha is 5.036194473566866e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06497872891324248
the lambda is 200.0
the regulation term lambda/alpha is 3077.9303218909313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05394529459805779
the lambda is 200.0
the regulation term lambda/alpha is 3707.4595938382486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 749158.3200606073
the lambda is 200.0
the regulation term lambda/alpha is 0.0002669662668684236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 12832617.454123203
the lambda is 200.0
the regulation term lambda/alpha is 1.5585284975181637e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07798274664755211
the lambda is 200.0
the regulation term lambda/alpha is 2564.6698609361947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 292784836.35425436
the lambda is 200.0
the regulation term lambda/alpha is 6.830954857170623e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09043429837175276
the lambda is 200.0
the regulation term lambda/alpha is 2211.5503033799196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 4925.750167004443
the lambda is 200.0
the regulation term lambda/alpha is 0.04060295248827621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999998
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920000013e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05243984829959508
the lambda is 200.0
the regulation term lambda/alpha is 3813.893565392795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.406118250462846
the lambda is 200.0
the regulation term lambda/alpha is 58.71786746476657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 490753786.77090573
the lambda is 200.0
the regulation term lambda/alpha is 4.0753633571729164e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21645293296839022
the lambda is 200.0
the regulation term lambda/alpha is 923.9884036554362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 59.20007535839425
the lambda is 200.0
the regulation term lambda/alpha is 3.37837407789112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10008278194903579
the lambda is 200.0
the regulation term lambda/alpha is 1998.3457304558551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061756355050828556
the lambda is 200.0
the regulation term lambda/alpha is 3238.5331005269018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14566507578902907
the lambda is 200.0
the regulation term lambda/alpha is 1373.012706832115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1067329476137029
the lambda is 200.0
the regulation term lambda/alpha is 1873.8356287494023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1980280026655257
the lambda is 200.0
the regulation term lambda/alpha is 166.94100601573123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.25690643588781936
the lambda is 200.0
the regulation term lambda/alpha is 778.4935371853895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0767405594271124
the lambda is 200.0
the regulation term lambda/alpha is 2606.1837637495787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15320201542468243
the lambda is 200.0
the regulation term lambda/alpha is 1305.4658546468308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 15199.077650605097
the lambda is 200.0
the regulation term lambda/alpha is 0.013158693217942585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08054703095561536
the lambda is 200.0
the regulation term lambda/alpha is 2483.0213805175267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4185197100914819
the lambda is 200.0
the regulation term lambda/alpha is 477.87474562735196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0088509937881815
the lambda is 200.0
the regulation term lambda/alpha is 198.24533179970481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05253504119932412
the lambda is 200.0
the regulation term lambda/alpha is 3806.9828334420927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499902905.7366778
the lambda is 200.0
the regulation term lambda/alpha is 4.000776904972609e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12814901856269453
the lambda is 200.0
the regulation term lambda/alpha is 1560.6830410656146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061636024614548236
the lambda is 200.0
the regulation term lambda/alpha is 3244.8556059664024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.117214642026505
the lambda is 200.0
the regulation term lambda/alpha is 1706.271473787168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06841768654459049
the lambda is 200.0
the regulation term lambda/alpha is 2923.220735761829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09651372706436194
the lambda is 200.0
the regulation term lambda/alpha is 2072.2440846847244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13647637966372866
the lambda is 200.0
the regulation term lambda/alpha is 1465.4550515832157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.580658794672252
the lambda is 200.0
the regulation term lambda/alpha is 344.43635717751994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24249694776707204
the lambda is 200.0
the regulation term lambda/alpha is 824.7526488131634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7497326792693869
the lambda is 200.0
the regulation term lambda/alpha is 266.7617479271407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 1362503.248578631
the lambda is 200.0
the regulation term lambda/alpha is 0.00014678864084077657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07358001918248007
the lambda is 200.0
the regulation term lambda/alpha is 2718.1292179877746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2177976936022503
the lambda is 200.0
the regulation term lambda/alpha is 918.2833697277206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6988840047270508
the lambda is 200.0
the regulation term lambda/alpha is 286.1705213558436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6740342010141382
the lambda is 200.0
the regulation term lambda/alpha is 296.72084843630194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.055057205270632924
the lambda is 200.0
the regulation term lambda/alpha is 3632.585399438689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 123074.1054666504
the lambda is 200.0
the regulation term lambda/alpha is 0.0016250372021123023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 16.716580631293898
the lambda is 200.0
the regulation term lambda/alpha is 11.96416925274745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09513923300644987
the lambda is 200.0
the regulation term lambda/alpha is 2102.182177424546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05966451556423565
the lambda is 200.0
the regulation term lambda/alpha is 3352.076156298918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.653356507779191
the lambda is 200.0
the regulation term lambda/alpha is 306.11159086761893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3819863904654879
the lambda is 200.0
the regulation term lambda/alpha is 523.5788629963502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 80657975.732147
the lambda is 200.0
the regulation term lambda/alpha is 2.479605992892382e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31786259999592636
the lambda is 200.0
the regulation term lambda/alpha is 629.2026806631643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0800218307840038
the lambda is 200.0
the regulation term lambda/alpha is 2499.317974114379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1726925991037289
the lambda is 200.0
the regulation term lambda/alpha is 1158.1272216527864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11420772107402012
the lambda is 200.0
the regulation term lambda/alpha is 1751.1950866297063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 54.71512608646131
the lambda is 200.0
the regulation term lambda/alpha is 3.6552963376883807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18574933911728286
the lambda is 200.0
the regulation term lambda/alpha is 1076.7198470284688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07510618558435016
the lambda is 200.0
the regulation term lambda/alpha is 2662.896517030335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08095669610905684
the lambda is 200.0
the regulation term lambda/alpha is 2470.4565479127236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05976912169440838
the lambda is 200.0
the regulation term lambda/alpha is 3346.2094528103253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6539968289292742
the lambda is 200.0
the regulation term lambda/alpha is 305.811880353366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0799637311739572
the lambda is 200.0
the regulation term lambda/alpha is 2501.133914885859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  30  iterations
the alpha is 426916.821782196
the lambda is 200.0
the regulation term lambda/alpha is 0.000468475332419756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07928728083013381
the lambda is 200.0
the regulation term lambda/alpha is 2522.472682957596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10429482834463953
the lambda is 200.0
the regulation term lambda/alpha is 1917.6406268113817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11893970449306536
the lambda is 200.0
the regulation term lambda/alpha is 1681.5242719193132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10935770423811364
the lambda is 200.0
the regulation term lambda/alpha is 1828.8606312045774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 63467.36798030801
the lambda is 200.0
the regulation term lambda/alpha is 0.0031512256828115813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.87570718094975
the lambda is 200.0
the regulation term lambda/alpha is 51.603485676900284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13954597954623366
the lambda is 200.0
the regulation term lambda/alpha is 1433.2193636129591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1467790938529576
the lambda is 200.0
the regulation term lambda/alpha is 174.4015051129319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 109139.55933830583
the lambda is 200.0
the regulation term lambda/alpha is 0.0018325161033502905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36572187110881105
the lambda is 200.0
the regulation term lambda/alpha is 546.8636573296301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 7127.334579293595
the lambda is 200.0
the regulation term lambda/alpha is 0.02806098097050783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.8212402892132835
the lambda is 200.0
the regulation term lambda/alpha is 52.33902734789179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18028386735340354
the lambda is 200.0
the regulation term lambda/alpha is 1109.3616025439908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14917981377620082
the lambda is 200.0
the regulation term lambda/alpha is 1340.6639607422992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06324385503868697
the lambda is 200.0
the regulation term lambda/alpha is 3162.3625706822863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1069528200582748
the lambda is 200.0
the regulation term lambda/alpha is 180.67617370492007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 8834608.377602642
the lambda is 200.0
the regulation term lambda/alpha is 2.2638241725240114e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09135550871470793
the lambda is 200.0
the regulation term lambda/alpha is 2189.2494805603405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06859212889604492
the lambda is 200.0
the regulation term lambda/alpha is 2915.7864498288254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09564912441612612
the lambda is 200.0
the regulation term lambda/alpha is 2090.975753524835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2381393358033372
the lambda is 200.0
the regulation term lambda/alpha is 839.844452094912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 218.28093874375247
the lambda is 200.0
the regulation term lambda/alpha is 0.9162504117447786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12916595187663088
the lambda is 200.0
the regulation term lambda/alpha is 1548.3956653764624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05954316461881111
the lambda is 200.0
the regulation term lambda/alpha is 3358.907798743623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3466950913396708
the lambda is 200.0
the regulation term lambda/alpha is 576.8757764269934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08553874557868436
the lambda is 200.0
the regulation term lambda/alpha is 2338.121732402849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19119440069321791
the lambda is 200.0
the regulation term lambda/alpha is 1046.055738425683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0639697219380532
the lambda is 200.0
the regulation term lambda/alpha is 3126.4791207577136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5112572486488723
the lambda is 200.0
the regulation term lambda/alpha is 391.19249757054985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 3271623.9542473117
the lambda is 200.0
the regulation term lambda/alpha is 6.1131720147835e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061674240618997116
the lambda is 200.0
the regulation term lambda/alpha is 3242.844954274075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06374614237398799
the lambda is 200.0
the regulation term lambda/alpha is 3137.4447543293422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.436742098493657
the lambda is 200.0
the regulation term lambda/alpha is 457.93616115737166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1540.9655965871634
the lambda is 200.0
the regulation term lambda/alpha is 0.1297887509253599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5443293163267925
the lambda is 200.0
the regulation term lambda/alpha is 367.4246343181127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06085419160799781
the lambda is 200.0
the regulation term lambda/alpha is 3286.544356522433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07081235355788391
the lambda is 200.0
the regulation term lambda/alpha is 2824.365946776711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10367.140657123417
the lambda is 200.0
the regulation term lambda/alpha is 0.01929172243482363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08926007633713805
the lambda is 200.0
the regulation term lambda/alpha is 2240.643389600003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05715328258918608
the lambda is 200.0
the regulation term lambda/alpha is 3499.3615578931212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 22.226195234706367
the lambda is 200.0
the regulation term lambda/alpha is 8.998391217570992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26392926160980035
the lambda is 200.0
the regulation term lambda/alpha is 757.7788032298026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1503597262593245
the lambda is 200.0
the regulation term lambda/alpha is 1330.143416562632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06554822417210923
the lambda is 200.0
the regulation term lambda/alpha is 3051.188686284807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06321839015587725
the lambda is 200.0
the regulation term lambda/alpha is 3163.6363961002653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06856766624272648
the lambda is 200.0
the regulation term lambda/alpha is 2916.826705053792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.285887037489955
the lambda is 200.0
the regulation term lambda/alpha is 699.5770139002096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09211487970707379
the lambda is 200.0
the regulation term lambda/alpha is 2171.201880043723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.45970896735511085
the lambda is 200.0
the regulation term lambda/alpha is 435.0578609564217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08586339332494833
the lambda is 200.0
the regulation term lambda/alpha is 2329.2813416202166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12489445351931341
the lambda is 200.0
the regulation term lambda/alpha is 1601.3521366589143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12765513998510855
the lambda is 200.0
the regulation term lambda/alpha is 1566.7210895176704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060114033273063236
the lambda is 200.0
the regulation term lambda/alpha is 3327.0101690152087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.23980066521565124
the lambda is 200.0
the regulation term lambda/alpha is 834.0260433395431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2914148524249668
the lambda is 200.0
the regulation term lambda/alpha is 686.3068177058539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 311.16967821439266
the lambda is 200.0
the regulation term lambda/alpha is 0.6427361468754744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 79.90126736049106
the lambda is 200.0
the regulation term lambda/alpha is 2.503089207554853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 106.10307438102157
the lambda is 200.0
the regulation term lambda/alpha is 1.8849595185318548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07856671291377616
the lambda is 200.0
the regulation term lambda/alpha is 2545.6073263430535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3459258916104437
the lambda is 200.0
the regulation term lambda/alpha is 148.59659157064996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10067064036268507
the lambda is 200.0
the regulation term lambda/alpha is 1986.6765452118123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 58.87427096328642
the lambda is 200.0
the regulation term lambda/alpha is 3.3970696660467965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06443505627333776
the lambda is 200.0
the regulation term lambda/alpha is 3103.900447476709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09281615316955492
the lambda is 200.0
the regulation term lambda/alpha is 2154.7973404440013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3987069790555198
the lambda is 200.0
the regulation term lambda/alpha is 501.6215178218641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.5773011278621164
the lambda is 200.0
the regulation term lambda/alpha is 346.4396488201013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 489617.19814822555
the lambda is 200.0
the regulation term lambda/alpha is 0.00040848238329130847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.568101479330581
the lambda is 200.0
the regulation term lambda/alpha is 43.78186450212319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 2898.4421062157517
the lambda is 200.0
the regulation term lambda/alpha is 0.06900258575843107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06018048415793018
the lambda is 200.0
the regulation term lambda/alpha is 3323.3365068174735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06319084846228355
the lambda is 200.0
the regulation term lambda/alpha is 3165.0152651356334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12684944872524445
the lambda is 200.0
the regulation term lambda/alpha is 1576.6722048055522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06965440804550577
the lambda is 200.0
the regulation term lambda/alpha is 2871.3186374269153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8249406542051207
the lambda is 200.0
the regulation term lambda/alpha is 109.59260485493041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2175575480041983
the lambda is 200.0
the regulation term lambda/alpha is 919.2969944492136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1173301311745047
the lambda is 200.0
the regulation term lambda/alpha is 1704.5919747804653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08375667402593798
the lambda is 200.0
the regulation term lambda/alpha is 2387.8694125087095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06912241736530325
the lambda is 200.0
the regulation term lambda/alpha is 2893.417325713961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12213230200989304
the lambda is 200.0
the regulation term lambda/alpha is 1637.5684131770436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6640147753780711
the lambda is 200.0
the regulation term lambda/alpha is 301.19811699389624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06458125422595813
the lambda is 200.0
the regulation term lambda/alpha is 3096.8738900646954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22342766845671616
the lambda is 200.0
the regulation term lambda/alpha is 895.1442826282962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07882276381110168
the lambda is 200.0
the regulation term lambda/alpha is 2537.3380776053336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20605262856212936
the lambda is 200.0
the regulation term lambda/alpha is 970.6258124229444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07643794875558746
the lambda is 200.0
the regulation term lambda/alpha is 2616.5014008880034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 298622686.3685389
the lambda is 200.0
the regulation term lambda/alpha is 6.69741480234272e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 59.34944196565887
the lambda is 200.0
the regulation term lambda/alpha is 3.369871617592044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9703825879711153
the lambda is 200.0
the regulation term lambda/alpha is 206.10427524071903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 2446819.681209247
the lambda is 200.0
the regulation term lambda/alpha is 8.173875726762081e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 38.486215853049806
the lambda is 200.0
the regulation term lambda/alpha is 5.196665755959251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1339426464726191
the lambda is 200.0
the regulation term lambda/alpha is 1493.1764099560664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 334.15816048551443
the lambda is 200.0
the regulation term lambda/alpha is 0.598518975892764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07464818873081504
the lambda is 200.0
the regulation term lambda/alpha is 2679.2344650345053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.057459998178617806
the lambda is 200.0
the regulation term lambda/alpha is 3480.682324045472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06272654837901925
the lambda is 200.0
the regulation term lambda/alpha is 3188.4426159003497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1814851299778354
the lambda is 200.0
the regulation term lambda/alpha is 1102.0186613879926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.060237345713382136
the lambda is 200.0
the regulation term lambda/alpha is 3320.199415021181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09261866695922222
the lambda is 200.0
the regulation term lambda/alpha is 2159.3919084157756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 36.966114626383536
the lambda is 200.0
the regulation term lambda/alpha is 5.410360326515234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07333163311836231
the lambda is 200.0
the regulation term lambda/alpha is 2727.3359598740453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0806424018284877
the lambda is 200.0
the regulation term lambda/alpha is 2480.084861874093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.3453201636449172
the lambda is 200.0
the regulation term lambda/alpha is 59.78501016838059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 456352679.18595487
the lambda is 200.0
the regulation term lambda/alpha is 4.3825753440685704e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 3667.5686529030054
the lambda is 200.0
the regulation term lambda/alpha is 0.054532039868345254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 868121.0532523515
the lambda is 200.0
the regulation term lambda/alpha is 0.0002303826168605343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 32.502328968577146
the lambda is 200.0
the regulation term lambda/alpha is 6.1534051973124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3526374792750724
the lambda is 200.0
the regulation term lambda/alpha is 567.1546893176134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16871299950782037
the lambda is 200.0
the regulation term lambda/alpha is 1185.4451084590514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06869086453674592
the lambda is 200.0
the regulation term lambda/alpha is 2911.5953241935217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 576.8054754550247
the lambda is 200.0
the regulation term lambda/alpha is 0.34673734648969123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 13.49507472448826
the lambda is 200.0
the regulation term lambda/alpha is 14.820221753724605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.057182234924795
the lambda is 200.0
the regulation term lambda/alpha is 11.72526606361146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.393932788791839
the lambda is 200.0
the regulation term lambda/alpha is 31.279653165980626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13173008262308628
the lambda is 200.0
the regulation term lambda/alpha is 1518.2560886434085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.559215631210975
the lambda is 200.0
the regulation term lambda/alpha is 78.14894437221125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5750080352684279
the lambda is 200.0
the regulation term lambda/alpha is 347.82122637057597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15052328434842596
the lambda is 200.0
the regulation term lambda/alpha is 1328.6980872477316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.875739741412927
the lambda is 200.0
the regulation term lambda/alpha is 34.03826731643264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10506947467866426
the lambda is 200.0
the regulation term lambda/alpha is 1903.502426481748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 14.797773160088527
the lambda is 200.0
the regulation term lambda/alpha is 13.515547091870918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 39894.596627616644
the lambda is 200.0
the regulation term lambda/alpha is 0.005013210231621993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.988914377187806
the lambda is 200.0
the regulation term lambda/alpha is 28.616747781717116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 404216289.1716244
the lambda is 200.0
the regulation term lambda/alpha is 4.947846124901782e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06020409108595588
the lambda is 200.0
the regulation term lambda/alpha is 3322.033376676208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08235845150789953
the lambda is 200.0
the regulation term lambda/alpha is 2428.408940894387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 32.07525049792569
the lambda is 200.0
the regulation term lambda/alpha is 6.2353371180354165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 3144.403978604999
the lambda is 200.0
the regulation term lambda/alpha is 0.06360505881586155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06975790554318785
the lambda is 200.0
the regulation term lambda/alpha is 2867.0585569140676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2879791717673601
the lambda is 200.0
the regulation term lambda/alpha is 694.4946704741799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  22  iterations
the alpha is 23344983.974690188
the lambda is 200.0
the regulation term lambda/alpha is 8.56715087989921e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06161745003749158
the lambda is 200.0
the regulation term lambda/alpha is 3245.833767517295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1328255119041616
the lambda is 200.0
the regulation term lambda/alpha is 1505.7348331117837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11586842198385036
the lambda is 200.0
the regulation term lambda/alpha is 1726.0958298705045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.88521389017834
the lambda is 200.0
the regulation term lambda/alpha is 11.844682649613013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 178526.89377728742
the lambda is 200.0
the regulation term lambda/alpha is 0.0011202793919077554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9758098
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999921935213e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10175381652530108
the lambda is 200.0
the regulation term lambda/alpha is 1965.5282409016081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 37.0806063854862
the lambda is 200.0
the regulation term lambda/alpha is 5.3936550530166745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 46110946.84662545
the lambda is 200.0
the regulation term lambda/alpha is 4.337364848855552e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.49692956453610193
the lambda is 200.0
the regulation term lambda/alpha is 402.471525691384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05708178640094737
the lambda is 200.0
the regulation term lambda/alpha is 3503.744584922112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.988810137168686
the lambda is 200.0
the regulation term lambda/alpha is 33.39561539256836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.972402525094496
the lambda is 200.0
the regulation term lambda/alpha is 101.39918067201732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20270354814258162
the lambda is 200.0
the regulation term lambda/alpha is 986.662551458251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.0863806937964564
the lambda is 200.0
the regulation term lambda/alpha is 95.85978273029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 972.2594423609269
the lambda is 200.0
the regulation term lambda/alpha is 0.20570641053826355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23087984992252017
the lambda is 200.0
the regulation term lambda/alpha is 866.2514293348554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 36.281241565937655
the lambda is 200.0
the regulation term lambda/alpha is 5.512490514871695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.053690113630327274
the lambda is 200.0
the regulation term lambda/alpha is 3725.080587034341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 438.8126700756557
the lambda is 200.0
the regulation term lambda/alpha is 0.45577535390105756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10863755188208714
the lambda is 200.0
the regulation term lambda/alpha is 1840.9840477358666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499923196.2842316
the lambda is 200.0
the regulation term lambda/alpha is 4.000614524121619e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 99.09408571409257
the lambda is 200.0
the regulation term lambda/alpha is 2.018283922383041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1907422042350208
the lambda is 200.0
the regulation term lambda/alpha is 1048.5356442330524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12325285557514766
the lambda is 200.0
the regulation term lambda/alpha is 1622.680456908841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11169138674404054
the lambda is 200.0
the regulation term lambda/alpha is 1790.6483734357546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16396423281853081
the lambda is 200.0
the regulation term lambda/alpha is 1219.7782196886328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0077079149572563
the lambda is 200.0
the regulation term lambda/alpha is 198.4702085112464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5434495853119813
the lambda is 200.0
the regulation term lambda/alpha is 368.0194178180941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.3111166975286817
the lambda is 200.0
the regulation term lambda/alpha is 60.402582654146265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05500347103845283
the lambda is 200.0
the regulation term lambda/alpha is 3636.134160700156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0826107068969123
the lambda is 200.0
the regulation term lambda/alpha is 2420.993688500628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05573640371354391
the lambda is 200.0
the regulation term lambda/alpha is 3588.3190639262602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06399581607171669
the lambda is 200.0
the regulation term lambda/alpha is 3125.204306729532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6324312731378193
the lambda is 200.0
the regulation term lambda/alpha is 316.23989593002943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.882653495568869
the lambda is 200.0
the regulation term lambda/alpha is 18.377870808937796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 5702.33732741551
the lambda is 200.0
the regulation term lambda/alpha is 0.035073337215328626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2480884409959357
the lambda is 200.0
the regulation term lambda/alpha is 806.1641211380602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06358834099962703
the lambda is 200.0
the regulation term lambda/alpha is 3145.2306642372237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.330862106147726
the lambda is 200.0
the regulation term lambda/alpha is 150.27852929024635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1420584754042803
the lambda is 200.0
the regulation term lambda/alpha is 1407.8709449107173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10437439468320447
the lambda is 200.0
the regulation term lambda/alpha is 1916.1787774390152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.892626213558904
the lambda is 200.0
the regulation term lambda/alpha is 15.512743229123032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06467697380097939
the lambda is 200.0
the regulation term lambda/alpha is 3092.2906290487485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.085315650378762
the lambda is 200.0
the regulation term lambda/alpha is 95.90874166396507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08572417478220729
the lambda is 200.0
the regulation term lambda/alpha is 2333.064161983762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0703758379332032
the lambda is 200.0
the regulation term lambda/alpha is 2841.884457416035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7190469921180696
the lambda is 200.0
the regulation term lambda/alpha is 278.14593787656014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 713.9452135203427
the lambda is 200.0
the regulation term lambda/alpha is 0.2801335399586671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1188416246035626
the lambda is 200.0
the regulation term lambda/alpha is 1682.9120324395537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06782904849023345
the lambda is 200.0
the regulation term lambda/alpha is 2948.589202586227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1402417088036545
the lambda is 200.0
the regulation term lambda/alpha is 1426.1092631152273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.49069674749828057
the lambda is 200.0
the regulation term lambda/alpha is 407.58370830795207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17277404554233208
the lambda is 200.0
the regulation term lambda/alpha is 1157.5812754294577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2336427507154759
the lambda is 200.0
the regulation term lambda/alpha is 856.0077271284775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.772705819291497
the lambda is 200.0
the regulation term lambda/alpha is 53.01234964499814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05609930043761991
the lambda is 200.0
the regulation term lambda/alpha is 3565.1068451805686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499970908.4985262
the lambda is 200.0
the regulation term lambda/alpha is 4.000232745553626e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17905186536849707
the lambda is 200.0
the regulation term lambda/alpha is 1116.9947857755667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10866848562529548
the lambda is 200.0
the regulation term lambda/alpha is 1840.459990301408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 58.255070323661144
the lambda is 200.0
the regulation term lambda/alpha is 3.433177556714185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2171198055964369
the lambda is 200.0
the regulation term lambda/alpha is 921.1504194681453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.664663701101877
the lambda is 200.0
the regulation term lambda/alpha is 300.9040506777198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11436210124574861
the lambda is 200.0
the regulation term lambda/alpha is 1748.8311059467785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.45731948207783585
the lambda is 200.0
the regulation term lambda/alpha is 437.3310297022508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08465122008212711
the lambda is 200.0
the regulation term lambda/alpha is 2362.6357636188063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8767574304626252
the lambda is 200.0
the regulation term lambda/alpha is 228.11326491349956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 555811.727261566
the lambda is 200.0
the regulation term lambda/alpha is 0.00035983407724299353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09583036527638468
the lambda is 200.0
the regulation term lambda/alpha is 2087.021158932029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 67.28618248229387
the lambda is 200.0
the regulation term lambda/alpha is 2.972378467936256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0638171751102278
the lambda is 200.0
the regulation term lambda/alpha is 3133.952570833029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1068651072974149
the lambda is 200.0
the regulation term lambda/alpha is 1871.51826314442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1361950100840974
the lambda is 200.0
the regulation term lambda/alpha is 1468.4825815314705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.082177395314107
the lambda is 200.0
the regulation term lambda/alpha is 14.20234913860343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08722094548273798
the lambda is 200.0
the regulation term lambda/alpha is 2293.0271953951965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28765092450287116
the lambda is 200.0
the regulation term lambda/alpha is 695.287179575895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6715092544628417
the lambda is 200.0
the regulation term lambda/alpha is 297.8365505327032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06974149361547172
the lambda is 200.0
the regulation term lambda/alpha is 2867.7332479101256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 138.43497986004607
the lambda is 200.0
the regulation term lambda/alpha is 1.4447215595523217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 87124888.078679
the lambda is 200.0
the regulation term lambda/alpha is 2.295555316173124e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.34920890395643656
the lambda is 200.0
the regulation term lambda/alpha is 572.7230827566464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 279392351.0949809
the lambda is 200.0
the regulation term lambda/alpha is 7.158392104013218e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05472487494197333
the lambda is 200.0
the regulation term lambda/alpha is 3654.6451720916107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3716255622118884
the lambda is 200.0
the regulation term lambda/alpha is 538.1761114860196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 834.7941335401335
the lambda is 200.0
the regulation term lambda/alpha is 0.23958002573862697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 438.8181413910663
the lambda is 200.0
the regulation term lambda/alpha is 0.455769671158066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07386986211987291
the lambda is 200.0
the regulation term lambda/alpha is 2707.464103228572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13312777013602342
the lambda is 200.0
the regulation term lambda/alpha is 1502.3161568442845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08151807663995159
the lambda is 200.0
the regulation term lambda/alpha is 2453.4435580878394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07166466399672937
the lambda is 200.0
the regulation term lambda/alpha is 2790.775660500238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07012759657620245
the lambda is 200.0
the regulation term lambda/alpha is 2851.9443095796796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.9533159007540917
the lambda is 200.0
the regulation term lambda/alpha is 67.72049002578171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06092868362978729
the lambda is 200.0
the regulation term lambda/alpha is 3282.5261943165046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.697689560682869
the lambda is 200.0
the regulation term lambda/alpha is 29.86104360137122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07756624725668426
the lambda is 200.0
the regulation term lambda/alpha is 2578.4411012969954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1590877419873469
the lambda is 200.0
the regulation term lambda/alpha is 1257.1678842227018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19198142725946976
the lambda is 200.0
the regulation term lambda/alpha is 1041.767439981019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33213012743680725
the lambda is 200.0
the regulation term lambda/alpha is 602.1736165384546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09254404203316895
the lambda is 200.0
the regulation term lambda/alpha is 2161.133181629537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22631053721708289
the lambda is 200.0
the regulation term lambda/alpha is 883.7414397905602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3850584246267701
the lambda is 200.0
the regulation term lambda/alpha is 519.4016990898361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05650981862584274
the lambda is 200.0
the regulation term lambda/alpha is 3539.2079617919208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 37.22326177349829
the lambda is 200.0
the regulation term lambda/alpha is 5.3729842703465955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14150874078548
the lambda is 200.0
the regulation term lambda/alpha is 1413.3402565088877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07074686128411804
the lambda is 200.0
the regulation term lambda/alpha is 2826.9805383563776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06302308328475305
the lambda is 200.0
the regulation term lambda/alpha is 3173.440421763454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12644220033529968
the lambda is 200.0
the regulation term lambda/alpha is 1581.750392429423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 274669760.7541711
the lambda is 200.0
the regulation term lambda/alpha is 7.281471373144699e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08930337317127823
the lambda is 200.0
the regulation term lambda/alpha is 2239.557061483138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  28  iterations
the alpha is 50944308.26282754
the lambda is 200.0
the regulation term lambda/alpha is 3.925855641579762e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07467842992049752
the lambda is 200.0
the regulation term lambda/alpha is 2678.1495033160118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.535741270251959
the lambda is 200.0
the regulation term lambda/alpha is 130.23026982089718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05869629325383581
the lambda is 200.0
the regulation term lambda/alpha is 3407.3701917613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07365155382270452
the lambda is 200.0
the regulation term lambda/alpha is 2715.489214001431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11619563933624266
the lambda is 200.0
the regulation term lambda/alpha is 1721.2349890450482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.3172262045462264
the lambda is 200.0
the regulation term lambda/alpha is 86.31008902264907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 497943126.87213445
the lambda is 200.0
the regulation term lambda/alpha is 4.0165229562724236e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12651398198483968
the lambda is 200.0
the regulation term lambda/alpha is 1580.8529370608715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07139431760169271
the lambda is 200.0
the regulation term lambda/alpha is 2801.3433942431593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1610575280932583
the lambda is 200.0
the regulation term lambda/alpha is 1241.792310907644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11466351883334525
the lambda is 200.0
the regulation term lambda/alpha is 1744.2339292821187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20733759711201988
the lambda is 200.0
the regulation term lambda/alpha is 964.610388013441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06678217935534848
the lambda is 200.0
the regulation term lambda/alpha is 2994.8109200779218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08881463644225893
the lambda is 200.0
the regulation term lambda/alpha is 2251.8810864020825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08594110572394952
the lambda is 200.0
the regulation term lambda/alpha is 2327.1750847890858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.076167461487533
the lambda is 200.0
the regulation term lambda/alpha is 96.33134306839774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05497529907583781
the lambda is 200.0
the regulation term lambda/alpha is 3637.9974890923695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1251019937606052
the lambda is 200.0
the regulation term lambda/alpha is 1598.6955442350454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.4759602930241593
the lambda is 200.0
the regulation term lambda/alpha is 420.2031197376546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.3867457479526317
the lambda is 200.0
the regulation term lambda/alpha is 59.053739159753796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 1360946.4462117676
the lambda is 200.0
the regulation term lambda/alpha is 0.0001469565540633179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 53277.04840111409
the lambda is 200.0
the regulation term lambda/alpha is 0.003753961715263073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06123119654784666
the lambda is 200.0
the regulation term lambda/alpha is 3266.308863386624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.058395788747818214
the lambda is 200.0
the regulation term lambda/alpha is 3424.9045057632243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6990530227026276
the lambda is 200.0
the regulation term lambda/alpha is 286.10133066412425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 5122.777679412414
the lambda is 200.0
the regulation term lambda/alpha is 0.039041319478642714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 5316.421372019659
the lambda is 200.0
the regulation term lambda/alpha is 0.03761929049728838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05750704637796307
the lambda is 200.0
the regulation term lambda/alpha is 3477.8346758674916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06152586499644866
the lambda is 200.0
the regulation term lambda/alpha is 3250.665391076488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17498036978344306
the lambda is 200.0
the regulation term lambda/alpha is 1142.9853545716094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7489776151530404
the lambda is 200.0
the regulation term lambda/alpha is 267.03067749112034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 19.222904019531633
the lambda is 200.0
the regulation term lambda/alpha is 10.404255246594786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 22.74091356395628
the lambda is 200.0
the regulation term lambda/alpha is 8.794721436213296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06347674098090154
the lambda is 200.0
the regulation term lambda/alpha is 3150.760371585155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24419311188914103
the lambda is 200.0
the regulation term lambda/alpha is 819.0239210792979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25350618927081203
the lambda is 200.0
the regulation term lambda/alpha is 788.9353730387498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7241586817268231
the lambda is 200.0
the regulation term lambda/alpha is 276.1825619808653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 81132.53453747818
the lambda is 200.0
the regulation term lambda/alpha is 0.0024651023308980007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7020128782663079
the lambda is 200.0
the regulation term lambda/alpha is 284.895058469469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 734.1805637433584
the lambda is 200.0
the regulation term lambda/alpha is 0.27241255064048847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 59.75649325466077
the lambda is 200.0
the regulation term lambda/alpha is 3.346916612855303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3479788073549448
the lambda is 200.0
the regulation term lambda/alpha is 148.3702851326332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09958632943266114
the lambda is 200.0
the regulation term lambda/alpha is 2008.3077781799072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060514097526492776
the lambda is 200.0
the regulation term lambda/alpha is 3305.014999396479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14978225559145855
the lambda is 200.0
the regulation term lambda/alpha is 1335.2716529086983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 149.08428228752936
the lambda is 200.0
the regulation term lambda/alpha is 1.3415230427462013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4788165426779348
the lambda is 200.0
the regulation term lambda/alpha is 417.6965124918951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06502064131785294
the lambda is 200.0
the regulation term lambda/alpha is 3075.946283308733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15420713821755624
the lambda is 200.0
the regulation term lambda/alpha is 1296.9568225683493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9592695275902695
the lambda is 200.0
the regulation term lambda/alpha is 208.4919767048261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.590200925361264
the lambda is 200.0
the regulation term lambda/alpha is 13.707830414614243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 149.05412105406918
the lambda is 200.0
the regulation term lambda/alpha is 1.341794501122517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31971423900851503
the lambda is 200.0
the regulation term lambda/alpha is 625.5586257910563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05787913553596597
the lambda is 200.0
the regulation term lambda/alpha is 3455.47662638673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0705512134962452
the lambda is 200.0
the regulation term lambda/alpha is 2834.820126951384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7399421914342853
the lambda is 200.0
the regulation term lambda/alpha is 270.2913853477189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8009604753370362
the lambda is 200.0
the regulation term lambda/alpha is 249.700211381644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1066623700011348
the lambda is 200.0
the regulation term lambda/alpha is 1875.075530366259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06990109207507521
the lambda is 200.0
the regulation term lambda/alpha is 2861.1856276178905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.056445810827066296
the lambda is 200.0
the regulation term lambda/alpha is 3543.2213138498864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07004159356487895
the lambda is 200.0
the regulation term lambda/alpha is 2855.446168778865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0814826900713496
the lambda is 200.0
the regulation term lambda/alpha is 2454.509047564234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10902935958850778
the lambda is 200.0
the regulation term lambda/alpha is 1834.368290842286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05556780954718877
the lambda is 200.0
the regulation term lambda/alpha is 3599.2061164505303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.42809744886843876
the lambda is 200.0
the regulation term lambda/alpha is 467.1833493253617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 3692.068614610621
the lambda is 200.0
the regulation term lambda/alpha is 0.05417017419680125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8102424881847685
the lambda is 200.0
the regulation term lambda/alpha is 110.48243608542809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056651149741275476
the lambda is 200.0
the regulation term lambda/alpha is 3530.3784815205954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13182508427208822
the lambda is 200.0
the regulation term lambda/alpha is 1517.161935487165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08212040403924421
the lambda is 200.0
the regulation term lambda/alpha is 2435.4483193290516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 498654730.177557
the lambda is 200.0
the regulation term lambda/alpha is 4.0107911927113495e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.21633732681178977
the lambda is 200.0
the regulation term lambda/alpha is 924.4821637922752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12181473355989304
the lambda is 200.0
the regulation term lambda/alpha is 1641.8375196105926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05642362006570174
the lambda is 200.0
the regulation term lambda/alpha is 3544.614822074738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 451859441.9945446
the lambda is 200.0
the regulation term lambda/alpha is 4.426155158276291e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08120156437934128
the lambda is 200.0
the regulation term lambda/alpha is 2463.0067355067185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  57  iterations
the alpha is 61657.153970218744
the lambda is 200.0
the regulation term lambda/alpha is 0.0032437436229476755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13365683712205362
the lambda is 200.0
the regulation term lambda/alpha is 1496.369391244555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12536654835191408
the lambda is 200.0
the regulation term lambda/alpha is 1595.3218990969087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08181318894927625
the lambda is 200.0
the regulation term lambda/alpha is 2444.593623211521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2513.5416851302457
the lambda is 200.0
the regulation term lambda/alpha is 0.0795690006587802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13078612009945734
the lambda is 200.0
the regulation term lambda/alpha is 1529.2142610233288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 249922309.34955046
the lambda is 200.0
the regulation term lambda/alpha is 8.002486873641709e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 107.98641833763108
the lambda is 200.0
the regulation term lambda/alpha is 1.852084762869703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06209464734297596
the lambda is 200.0
the regulation term lambda/alpha is 3220.8895381161005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9185476839715052
the lambda is 200.0
the regulation term lambda/alpha is 217.73502180666793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 22.901776148665594
the lambda is 200.0
the regulation term lambda/alpha is 8.732947117363791
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06915634291748048
the lambda is 200.0
the regulation term lambda/alpha is 2891.997921848561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.51659623937264
the lambda is 200.0
the regulation term lambda/alpha is 36.25423926670125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06996012510719164
the lambda is 200.0
the regulation term lambda/alpha is 2858.771331434351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07910992950726638
the lambda is 200.0
the regulation term lambda/alpha is 2528.1276477642377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4027846478204312
the lambda is 200.0
the regulation term lambda/alpha is 496.54325476963976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 559.705260807659
the lambda is 200.0
the regulation term lambda/alpha is 0.35733092755175905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 291.64789903828773
the lambda is 200.0
the regulation term lambda/alpha is 0.6857584116309504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 39.355164439649606
the lambda is 200.0
the regulation term lambda/alpha is 5.081925151315177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1204027428601794
the lambda is 200.0
the regulation term lambda/alpha is 1661.0917263924366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0938808819472305
the lambda is 200.0
the regulation term lambda/alpha is 182.83526415049653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06787394456426704
the lambda is 200.0
the regulation term lambda/alpha is 2946.6388211845892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4048.9760300125777
the lambda is 200.0
the regulation term lambda/alpha is 0.04939520474251331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3810934199075966
the lambda is 200.0
the regulation term lambda/alpha is 144.81279623602956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.43480222426178783
the lambda is 200.0
the regulation term lambda/alpha is 459.9792476672866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999982.6477828
the lambda is 200.0
the regulation term lambda/alpha is 4.0000001388177424e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3098687173778449
the lambda is 200.0
the regulation term lambda/alpha is 645.434626936303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 30501423.230344795
the lambda is 200.0
the regulation term lambda/alpha is 6.557071074671264e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08816455289045805
the lambda is 200.0
the regulation term lambda/alpha is 2268.4853883226097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10473044067774319
the lambda is 200.0
the regulation term lambda/alpha is 1909.6644557755885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24985601662132975
the lambda is 200.0
the regulation term lambda/alpha is 800.461012324193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09964407345618151
the lambda is 200.0
the regulation term lambda/alpha is 2007.1439581195968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 155.75703542482114
the lambda is 200.0
the regulation term lambda/alpha is 1.2840511470605993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06866880608238037
the lambda is 200.0
the regulation term lambda/alpha is 2912.530614848097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10062241472220457
the lambda is 200.0
the regulation term lambda/alpha is 1987.6287063091675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2313505970583122
the lambda is 200.0
the regulation term lambda/alpha is 864.4887998693591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.355118385291479
the lambda is 200.0
the regulation term lambda/alpha is 563.1924684379302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.800997828152035
the lambda is 200.0
the regulation term lambda/alpha is 249.68856714807296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0882812871558715
the lambda is 200.0
the regulation term lambda/alpha is 2265.4857721645512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1062609645411334
the lambda is 200.0
the regulation term lambda/alpha is 1882.1587105261067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15370484436397086
the lambda is 200.0
the regulation term lambda/alpha is 1301.1951628954705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5891879577348527
the lambda is 200.0
the regulation term lambda/alpha is 339.4502507636185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 504.64067471280094
the lambda is 200.0
the regulation term lambda/alpha is 0.3963216007386309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13285816832696346
the lambda is 200.0
the regulation term lambda/alpha is 1505.3647247928388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10348149437142294
the lambda is 200.0
the regulation term lambda/alpha is 1932.7127155909263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05727508198320591
the lambda is 200.0
the regulation term lambda/alpha is 3491.9199252939284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08668828753948042
the lambda is 200.0
the regulation term lambda/alpha is 2307.1167475642433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.40065269430649203
the lambda is 200.0
the regulation term lambda/alpha is 499.1854612289307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08029716340473632
the lambda is 200.0
the regulation term lambda/alpha is 2490.748010510705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.379268172501646
the lambda is 200.0
the regulation term lambda/alpha is 23.86843288490785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06205360688276097
the lambda is 200.0
the regulation term lambda/alpha is 3223.019741267638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.945072315783086
the lambda is 200.0
the regulation term lambda/alpha is 67.910047209425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 12.656192739182915
the lambda is 200.0
the regulation term lambda/alpha is 15.802540631418356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14201201557846277
the lambda is 200.0
the regulation term lambda/alpha is 1408.3315357882404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07109798830606372
the lambda is 200.0
the regulation term lambda/alpha is 2813.0191129886393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.253802732163641
the lambda is 200.0
the regulation term lambda/alpha is 788.0135816309836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499998616.2958706
the lambda is 200.0
the regulation term lambda/alpha is 4.0000110696636694e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3508950731413987
the lambda is 200.0
the regulation term lambda/alpha is 569.9709551618779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06155362751054396
the lambda is 200.0
the regulation term lambda/alpha is 3249.199244443239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.49672404964148764
the lambda is 200.0
the regulation term lambda/alpha is 402.63804449241127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.190422105844084
the lambda is 200.0
the regulation term lambda/alpha is 16.406322788783505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0698801548131594
the lambda is 200.0
the regulation term lambda/alpha is 2862.042886635638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16726121325430546
the lambda is 200.0
the regulation term lambda/alpha is 1195.734480868067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6430792502296431
the lambda is 200.0
the regulation term lambda/alpha is 311.00365923574765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12213551453971985
the lambda is 200.0
the regulation term lambda/alpha is 1637.525340223279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499953999.68848175
the lambda is 200.0
the regulation term lambda/alpha is 4.00036803635172e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.294526058908132
the lambda is 200.0
the regulation term lambda/alpha is 154.4966967823653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0924498834543184
the lambda is 200.0
the regulation term lambda/alpha is 2163.3342577313747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 8048.422146146551
the lambda is 200.0
the regulation term lambda/alpha is 0.024849591183006798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08434206871668054
the lambda is 200.0
the regulation term lambda/alpha is 2371.2958793059047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07224862029237901
the lambda is 200.0
the regulation term lambda/alpha is 2768.218952702915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23260969709890697
the lambda is 200.0
the regulation term lambda/alpha is 859.809382387695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11038737745833069
the lambda is 200.0
the regulation term lambda/alpha is 1811.8013545117196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.4199096668451587
the lambda is 200.0
the regulation term lambda/alpha is 82.64771315234276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0687122570967717
the lambda is 200.0
the regulation term lambda/alpha is 2910.6888414148248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.17392560193625206
the lambda is 200.0
the regulation term lambda/alpha is 1149.9169631927152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2690598518086072
the lambda is 200.0
the regulation term lambda/alpha is 743.329034992065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07142467760932304
the lambda is 200.0
the regulation term lambda/alpha is 2800.152646035802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 730.4123533021506
the lambda is 200.0
the regulation term lambda/alpha is 0.2738179318789064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 17685.649624429687
the lambda is 200.0
the regulation term lambda/alpha is 0.011308603542825724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8086916880958694
the lambda is 200.0
the regulation term lambda/alpha is 247.3130402402383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18582526891695114
the lambda is 200.0
the regulation term lambda/alpha is 1076.2798900583527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9034133286703739
the lambda is 200.0
the regulation term lambda/alpha is 221.38260932496544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07671839151910252
the lambda is 200.0
the regulation term lambda/alpha is 2606.936824922886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11627265804545532
the lambda is 200.0
the regulation term lambda/alpha is 1720.0948474215884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8610599525577972
the lambda is 200.0
the regulation term lambda/alpha is 232.2718637719658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 1.1619188434654617
the lambda is 200.0
the regulation term lambda/alpha is 172.12906144416536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6256213852790922
the lambda is 200.0
the regulation term lambda/alpha is 123.02987756627188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14998290146697507
the lambda is 200.0
the regulation term lambda/alpha is 1333.4853376205572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1072361872478624
the lambda is 200.0
the regulation term lambda/alpha is 1865.042063997727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 285203.67106045666
the lambda is 200.0
the regulation term lambda/alpha is 0.000701253245641444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.376254596003388
the lambda is 200.0
the regulation term lambda/alpha is 59.23723887314312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.7048109974573386
the lambda is 200.0
the regulation term lambda/alpha is 283.7640171925748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06339032383862199
the lambda is 200.0
the regulation term lambda/alpha is 3155.055659743222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05615957028844188
the lambda is 200.0
the regulation term lambda/alpha is 3561.280810604096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 210013702.00509822
the lambda is 200.0
the regulation term lambda/alpha is 9.52318815822526e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06535290093906126
the lambda is 200.0
the regulation term lambda/alpha is 3060.3079148160737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.9447590247573014
the lambda is 200.0
the regulation term lambda/alpha is 50.70018187291044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10590061739002893
the lambda is 200.0
the regulation term lambda/alpha is 1888.5631163358166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 68.63288871725678
the lambda is 200.0
the regulation term lambda/alpha is 2.914054817420395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.736736436971842
the lambda is 200.0
the regulation term lambda/alpha is 20.54076345751438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3192445730852647
the lambda is 200.0
the regulation term lambda/alpha is 626.4789345270513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11177657924052725
the lambda is 200.0
the regulation term lambda/alpha is 1789.2835991127313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06619577870433592
the lambda is 200.0
the regulation term lambda/alpha is 3021.3406944467247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08868282897553188
the lambda is 200.0
the regulation term lambda/alpha is 2255.2280109961443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.918489963373893
the lambda is 200.0
the regulation term lambda/alpha is 68.52858927388321
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06937918371563392
the lambda is 200.0
the regulation term lambda/alpha is 2882.709038776597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 66086.60257714496
the lambda is 200.0
the regulation term lambda/alpha is 0.0030263319977227414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 477638233.99767804
the lambda is 200.0
the regulation term lambda/alpha is 4.187269480628979e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 19.749197522433974
the lambda is 200.0
the regulation term lambda/alpha is 10.126993756217754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05745628270490067
the lambda is 200.0
the regulation term lambda/alpha is 3480.90740619635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.023880920242603
the lambda is 200.0
the regulation term lambda/alpha is 49.70326010242416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 126.71188006700737
the lambda is 200.0
the regulation term lambda/alpha is 1.5783839675824922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.7207673928451155
the lambda is 200.0
the regulation term lambda/alpha is 73.50867278325448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 23.55122426752653
the lambda is 200.0
the regulation term lambda/alpha is 8.49212753138141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06506855355816522
the lambda is 200.0
the regulation term lambda/alpha is 3073.681357020156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 166973875.01580176
the lambda is 200.0
the regulation term lambda/alpha is 1.197792169470061e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07021501588282449
the lambda is 200.0
the regulation term lambda/alpha is 2848.3935734453435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.131378329528093
the lambda is 200.0
the regulation term lambda/alpha is 1522.3210762261476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05852931584335547
the lambda is 200.0
the regulation term lambda/alpha is 3417.0910272600595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 5863.909295780944
the lambda is 200.0
the regulation term lambda/alpha is 0.03410693957082506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06786026974188156
the lambda is 200.0
the regulation term lambda/alpha is 2947.232611375332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09136614771695285
the lambda is 200.0
the regulation term lambda/alpha is 2188.9945564914115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22498467716077505
the lambda is 200.0
the regulation term lambda/alpha is 888.9494276851534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16664667984855477
the lambda is 200.0
the regulation term lambda/alpha is 1200.1439223497046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06128849179341482
the lambda is 200.0
the regulation term lambda/alpha is 3263.255370586377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36966019816895096
the lambda is 200.0
the regulation term lambda/alpha is 541.0374202867013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21718888735464426
the lambda is 200.0
the regulation term lambda/alpha is 920.857427081079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 10.074006736509443
the lambda is 200.0
the regulation term lambda/alpha is 19.853073879251575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 385.8214605034553
the lambda is 200.0
the regulation term lambda/alpha is 0.5183744826921282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23701053841587644
the lambda is 200.0
the regulation term lambda/alpha is 843.8443342509312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16467732597688575
the lambda is 200.0
the regulation term lambda/alpha is 1214.496281218898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2063903513926205
the lambda is 200.0
the regulation term lambda/alpha is 969.0375477850513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0826255875608621
the lambda is 200.0
the regulation term lambda/alpha is 2420.5576735255263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19043335530577576
the lambda is 200.0
the regulation term lambda/alpha is 1050.236181990614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 229.35499162630109
the lambda is 200.0
the regulation term lambda/alpha is 0.8720106703667014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.47278477971133614
the lambda is 200.0
the regulation term lambda/alpha is 423.02546228775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20529572950945965
the lambda is 200.0
the regulation term lambda/alpha is 974.2043854389302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06328604603842301
the lambda is 200.0
the regulation term lambda/alpha is 3160.2543138589112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 156.48616738197524
the lambda is 200.0
the regulation term lambda/alpha is 1.2780682366116718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12546691702923657
the lambda is 200.0
the regulation term lambda/alpha is 1594.045703325886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09276875503661118
the lambda is 200.0
the regulation term lambda/alpha is 2155.8982862394782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 1647.9828660282774
the lambda is 200.0
the regulation term lambda/alpha is 0.12136048506499961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 119.49515751262334
the lambda is 200.0
the regulation term lambda/alpha is 1.6737079908771384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09640560002561188
the lambda is 200.0
the regulation term lambda/alpha is 2074.5682817892985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06785542586551664
the lambda is 200.0
the regulation term lambda/alpha is 2947.4430003045304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07659684859568319
the lambda is 200.0
the regulation term lambda/alpha is 2611.0734797419786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12500187676551858
the lambda is 200.0
the regulation term lambda/alpha is 1599.975977762035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10062683548393801
the lambda is 200.0
the regulation term lambda/alpha is 1987.5413853387436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 488.87474413218314
the lambda is 200.0
the regulation term lambda/alpha is 0.40910274543845837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.271561431149404
the lambda is 200.0
the regulation term lambda/alpha is 157.28693486653947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06102361964922434
the lambda is 200.0
the regulation term lambda/alpha is 3277.419483630092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07498915369944907
the lambda is 200.0
the regulation term lambda/alpha is 2667.052368687678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6044954643137769
the lambda is 200.0
the regulation term lambda/alpha is 330.85442622309824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07088659215429534
the lambda is 200.0
the regulation term lambda/alpha is 2821.4080254368823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07113271577939824
the lambda is 200.0
the regulation term lambda/alpha is 2811.6457780166024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09909249418883626
the lambda is 200.0
the regulation term lambda/alpha is 2018.316338055521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 75.05006882126989
the lambda is 200.0
the regulation term lambda/alpha is 2.664887629567611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.8010787488033095
the lambda is 200.0
the regulation term lambda/alpha is 25.637479948613535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06438329062701738
the lambda is 200.0
the regulation term lambda/alpha is 3106.3960548185046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06298126124149105
the lambda is 200.0
the regulation term lambda/alpha is 3175.5477114555338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27492697471334343
the lambda is 200.0
the regulation term lambda/alpha is 727.4659032949854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2302916825826839
the lambda is 200.0
the regulation term lambda/alpha is 868.4638444473218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.2464590265785755
the lambda is 200.0
the regulation term lambda/alpha is 27.59968686312027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.355327769654946
the lambda is 200.0
the regulation term lambda/alpha is 562.8605954277576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13346480935256605
the lambda is 200.0
the regulation term lambda/alpha is 1498.522351848358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0127938888926227
the lambda is 200.0
the regulation term lambda/alpha is 197.4735454009085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26111261322347723
the lambda is 200.0
the regulation term lambda/alpha is 765.953040456253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.301223037768123
the lambda is 200.0
the regulation term lambda/alpha is 31.739869990515285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  23  iterations
the alpha is 385160.1530266632
the lambda is 200.0
the regulation term lambda/alpha is 0.0005192645148475542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07658689322233565
the lambda is 200.0
the regulation term lambda/alpha is 2611.4128878343427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.451920840659056
the lambda is 200.0
the regulation term lambda/alpha is 81.56870184530169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32639072525540874
the lambda is 200.0
the regulation term lambda/alpha is 612.7625098522487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28317690645589905
the lambda is 200.0
the regulation term lambda/alpha is 706.2722822390436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20436008141264203
the lambda is 200.0
the regulation term lambda/alpha is 978.6647109234694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 22.871112804373546
the lambda is 200.0
the regulation term lambda/alpha is 8.744655396118498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07674027568769066
the lambda is 200.0
the regulation term lambda/alpha is 2606.1933998509276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 22.620095425942598
the lambda is 200.0
the regulation term lambda/alpha is 8.841695679613423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 129226.95906818385
the lambda is 200.0
the regulation term lambda/alpha is 0.0015476646780372993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.085560386395615
the lambda is 200.0
the regulation term lambda/alpha is 2337.530350496992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11041262948663054
the lambda is 200.0
the regulation term lambda/alpha is 1811.3869847128065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15011136980236447
the lambda is 200.0
the regulation term lambda/alpha is 1332.344113995619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06366413888162673
the lambda is 200.0
the regulation term lambda/alpha is 3141.4859843132094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05327426996874469
the lambda is 200.0
the regulation term lambda/alpha is 3754.157496993152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06343734097396654
the lambda is 200.0
the regulation term lambda/alpha is 3152.7172628826947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08820680039927849
the lambda is 200.0
the regulation term lambda/alpha is 2267.3988750830595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2650326694168629
the lambda is 200.0
the regulation term lambda/alpha is 754.6239504739142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7899337214657389
the lambda is 200.0
the regulation term lambda/alpha is 253.18579846027552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10187096321766066
the lambda is 200.0
the regulation term lambda/alpha is 1963.2679782625967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1115096800344524
the lambda is 200.0
the regulation term lambda/alpha is 179.93545498749125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09000494027221677
the lambda is 200.0
the regulation term lambda/alpha is 2222.100246887638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 163.1483830892973
the lambda is 200.0
the regulation term lambda/alpha is 1.225877916856414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.0352426215566073
the lambda is 200.0
the regulation term lambda/alpha is 98.26838229588309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.6857629282251647
the lambda is 200.0
the regulation term lambda/alpha is 54.26284975314666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09851411277560547
the lambda is 200.0
the regulation term lambda/alpha is 2030.1659768845316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07112951245258253
the lambda is 200.0
the regulation term lambda/alpha is 2811.7724008487635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06503433262762968
the lambda is 200.0
the regulation term lambda/alpha is 3075.298721755937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 767442.6378029224
the lambda is 200.0
the regulation term lambda/alpha is 0.00026060579663982595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.40493343177454916
the lambda is 200.0
the regulation term lambda/alpha is 493.9083422268578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06511168647146577
the lambda is 200.0
the regulation term lambda/alpha is 3071.6452120718304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09810220841955608
the lambda is 200.0
the regulation term lambda/alpha is 2038.6900888576859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.9860966109384615
the lambda is 200.0
the regulation term lambda/alpha is 40.11153726168111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5150204799186441
the lambda is 200.0
the regulation term lambda/alpha is 388.334071747192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999993
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920000055e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09750129093830913
the lambda is 200.0
the regulation term lambda/alpha is 2051.254891861316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09789139528120538
the lambda is 200.0
the regulation term lambda/alpha is 2043.080491655827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09615575959723062
the lambda is 200.0
the regulation term lambda/alpha is 2079.958609216376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.17989985901446887
the lambda is 200.0
the regulation term lambda/alpha is 1111.7296094374067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30735344294817074
the lambda is 200.0
the regulation term lambda/alpha is 650.7166410162067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2588.2990592583137
the lambda is 200.0
the regulation term lambda/alpha is 0.07727082358763857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14582554948843568
the lambda is 200.0
the regulation term lambda/alpha is 1371.5017752486542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0864180392620628
the lambda is 200.0
the regulation term lambda/alpha is 2314.3316107126634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054172953396847495
the lambda is 200.0
the regulation term lambda/alpha is 3691.879202798618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10303737391211452
the lambda is 200.0
the regulation term lambda/alpha is 1941.0432584451298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6372449313837977
the lambda is 200.0
the regulation term lambda/alpha is 313.85106440265224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.84025945406199
the lambda is 200.0
the regulation term lambda/alpha is 29.238657004630557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07614695202572182
the lambda is 200.0
the regulation term lambda/alpha is 2626.500400599641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 135.18044327746708
the lambda is 200.0
the regulation term lambda/alpha is 1.4795039515404338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0602999004649722
the lambda is 200.0
the regulation term lambda/alpha is 3316.7550602538495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12273894473565655
the lambda is 200.0
the regulation term lambda/alpha is 1629.4746580292094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0850552178509173
the lambda is 200.0
the regulation term lambda/alpha is 2351.413646962319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 507.638203318825
the lambda is 200.0
the regulation term lambda/alpha is 0.39398138022797485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 155.25613036818814
the lambda is 200.0
the regulation term lambda/alpha is 1.288193899498218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1781620711387672
the lambda is 200.0
the regulation term lambda/alpha is 1122.5733890589072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11820434008701731
the lambda is 200.0
the regulation term lambda/alpha is 1691.9852507341777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.2253607305496637
the lambda is 200.0
the regulation term lambda/alpha is 62.00856794269835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13732479392772445
the lambda is 200.0
the regulation term lambda/alpha is 1456.4012388415613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.413989475470742
the lambda is 200.0
the regulation term lambda/alpha is 82.85040263524714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08010412383971598
the lambda is 200.0
the regulation term lambda/alpha is 2496.750359571864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.098439491462395
the lambda is 200.0
the regulation term lambda/alpha is 95.30891922960366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08069410917875593
the lambda is 200.0
the regulation term lambda/alpha is 2478.495667595192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07136501897115334
the lambda is 200.0
the regulation term lambda/alpha is 2802.493474861158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5247136891320712
the lambda is 200.0
the regulation term lambda/alpha is 381.16024823141163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 7407.697123737943
the lambda is 200.0
the regulation term lambda/alpha is 0.02699894402527617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32620081501616527
the lambda is 200.0
the regulation term lambda/alpha is 613.1192529058787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1251268889688482
the lambda is 200.0
the regulation term lambda/alpha is 1598.3774682497888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.261908338297242
the lambda is 200.0
the regulation term lambda/alpha is 763.6259360823339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11802863122467848
the lambda is 200.0
the regulation term lambda/alpha is 1694.5041040023705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11741261508129523
the lambda is 200.0
the regulation term lambda/alpha is 1703.3944764923442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 4501.797832307864
the lambda is 200.0
the regulation term lambda/alpha is 0.04442669516713264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.272698226472087
the lambda is 200.0
the regulation term lambda/alpha is 14.012767370717107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 76796.21299305475
the lambda is 200.0
the regulation term lambda/alpha is 0.0026042950844215127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15689172159488401
the lambda is 200.0
the regulation term lambda/alpha is 1274.764518910867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.851854472811052
the lambda is 200.0
the regulation term lambda/alpha is 20.300746478945253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 39.219044114492405
the lambda is 200.0
the regulation term lambda/alpha is 5.099563350298358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0684539506183836
the lambda is 200.0
the regulation term lambda/alpha is 2921.6721342345604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 292.73019280184246
the lambda is 200.0
the regulation term lambda/alpha is 0.6832229982350532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15275863209386914
the lambda is 200.0
the regulation term lambda/alpha is 1309.2549812641773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1427218369235925
the lambda is 200.0
the regulation term lambda/alpha is 1401.3272552473657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.603610579604226
the lambda is 200.0
the regulation term lambda/alpha is 20.825500819947052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.190162311809412
the lambda is 200.0
the regulation term lambda/alpha is 38.534440347834774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6033762273602108
the lambda is 200.0
the regulation term lambda/alpha is 331.46814695535164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2871179763304393
the lambda is 200.0
the regulation term lambda/alpha is 696.5777711174146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10081814386675622
the lambda is 200.0
the regulation term lambda/alpha is 1983.769908165786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11296022540861007
the lambda is 200.0
the regulation term lambda/alpha is 1770.5347105721653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.40958276739746385
the lambda is 200.0
the regulation term lambda/alpha is 488.3017937273657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 30.51594917983878
the lambda is 200.0
the regulation term lambda/alpha is 6.5539498319827985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499408178.40836287
the lambda is 200.0
the regulation term lambda/alpha is 4.004740183418888e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08481600192634953
the lambda is 200.0
the regulation term lambda/alpha is 2358.045598207649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 1863.389095856922
the lambda is 200.0
the regulation term lambda/alpha is 0.10733131391864534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12089716090144563
the lambda is 200.0
the regulation term lambda/alpha is 1654.2985667218302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6154010698255222
the lambda is 200.0
the regulation term lambda/alpha is 324.99131023074716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0625647120465361
the lambda is 200.0
the regulation term lambda/alpha is 3196.6901701911215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 184522.454081544
the lambda is 200.0
the regulation term lambda/alpha is 0.0010838789295074959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 12.102173769511626
the lambda is 200.0
the regulation term lambda/alpha is 16.52595672554707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05627183201603454
the lambda is 200.0
the regulation term lambda/alpha is 3554.1760919212725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08923352064681678
the lambda is 200.0
the regulation term lambda/alpha is 2241.3101999145943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15255585528316792
the lambda is 200.0
the regulation term lambda/alpha is 1310.9952392765797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06545996869732623
the lambda is 200.0
the regulation term lambda/alpha is 3055.3024081749854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1036.5457962323885
the lambda is 200.0
the regulation term lambda/alpha is 0.19294854190423147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17103197085144067
the lambda is 200.0
the regulation term lambda/alpha is 1169.3720127549786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10395554995733142
the lambda is 200.0
the regulation term lambda/alpha is 1923.899205786416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 5963.838972309712
the lambda is 200.0
the regulation term lambda/alpha is 0.03353544603209546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07048647892749604
the lambda is 200.0
the regulation term lambda/alpha is 2837.4236171695347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08497670725962797
the lambda is 200.0
the regulation term lambda/alpha is 2353.586134950407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07149745462462931
the lambda is 200.0
the regulation term lambda/alpha is 2797.3023802039575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07143857836547492
the lambda is 200.0
the regulation term lambda/alpha is 2799.607783021851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3833054588504514
the lambda is 200.0
the regulation term lambda/alpha is 521.7770719984215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08697587684155997
the lambda is 200.0
the regulation term lambda/alpha is 2299.4881714654166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3338631480988255
the lambda is 200.0
the regulation term lambda/alpha is 599.0478468165609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 8237796.154485366
the lambda is 200.0
the regulation term lambda/alpha is 2.427833807117244e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 457.3178869128926
the lambda is 200.0
the regulation term lambda/alpha is 0.4373325551512812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06502682688649718
the lambda is 200.0
the regulation term lambda/alpha is 3075.6536890396847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20309554919266076
the lambda is 200.0
the regulation term lambda/alpha is 984.7581633129524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06678185322641222
the lambda is 200.0
the regulation term lambda/alpha is 2994.825545226109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08620815116033008
the lambda is 200.0
the regulation term lambda/alpha is 2319.9662364645733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2054704780058126
the lambda is 200.0
the regulation term lambda/alpha is 973.3758442628539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7620463415105296
the lambda is 200.0
the regulation term lambda/alpha is 262.45123046396316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5416685979572231
the lambda is 200.0
the regulation term lambda/alpha is 369.2294527581133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14895872994765588
the lambda is 200.0
the regulation term lambda/alpha is 1342.653767726672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2937187006774333
the lambda is 200.0
the regulation term lambda/alpha is 680.9236168440065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09796206039276933
the lambda is 200.0
the regulation term lambda/alpha is 2041.6067118037279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05987945307008153
the lambda is 200.0
the regulation term lambda/alpha is 3340.043867233133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.387481235512923
the lambda is 200.0
the regulation term lambda/alpha is 144.14609356937657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06708172599317978
the lambda is 200.0
the regulation term lambda/alpha is 2981.4378959231617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09515124286436918
the lambda is 200.0
the regulation term lambda/alpha is 2101.9168429054016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.498895585041838
the lambda is 200.0
the regulation term lambda/alpha is 16.00141377605808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 39.13749382063334
the lambda is 200.0
the regulation term lambda/alpha is 5.11018924503949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10439295119060017
the lambda is 200.0
the regulation term lambda/alpha is 1915.838164540831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07239257193966109
the lambda is 200.0
the regulation term lambda/alpha is 2762.7143868669177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35515077080359375
the lambda is 200.0
the regulation term lambda/alpha is 563.1411120056514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.695450226497256
the lambda is 200.0
the regulation term lambda/alpha is 20.628232348963895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17942653924389168
the lambda is 200.0
the regulation term lambda/alpha is 1114.6623060490685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 53.60034307288839
the lambda is 200.0
the regulation term lambda/alpha is 3.731319400848426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07200818077752578
the lambda is 200.0
the regulation term lambda/alpha is 2777.462197217754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9058393
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999927532857e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06360661579958558
the lambda is 200.0
the regulation term lambda/alpha is 3144.327008847137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11920176328514778
the lambda is 200.0
the regulation term lambda/alpha is 1677.8275294600398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11466658016111336
the lambda is 200.0
the regulation term lambda/alpha is 1744.1873623420888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 24810.54744500735
the lambda is 200.0
the regulation term lambda/alpha is 0.008061087746785942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 415900852.7908794
the lambda is 200.0
the regulation term lambda/alpha is 4.808838420453124e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 495764976.5024953
the lambda is 200.0
the regulation term lambda/alpha is 4.0341696061499286e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.051517743143559294
the lambda is 200.0
the regulation term lambda/alpha is 3882.157637276155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.5609642121449756
the lambda is 200.0
the regulation term lambda/alpha is 78.09558565931184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 634653.8525545064
the lambda is 200.0
the regulation term lambda/alpha is 0.0003151324130390011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23861538334375418
the lambda is 200.0
the regulation term lambda/alpha is 838.1689277420808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.692235271807544
the lambda is 200.0
the regulation term lambda/alpha is 288.9191119628533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06386679091216164
the lambda is 200.0
the regulation term lambda/alpha is 3131.5179163309986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.055040684580649
the lambda is 200.0
the regulation term lambda/alpha is 3633.675735027381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 5514.771562651813
the lambda is 200.0
the regulation term lambda/alpha is 0.03626623473481261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1622570686070085
the lambda is 200.0
the regulation term lambda/alpha is 1232.6119392949593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.46720698709492575
the lambda is 200.0
the regulation term lambda/alpha is 428.0757897984188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16098441674919695
the lambda is 200.0
the regulation term lambda/alpha is 1242.3562729775688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.4194020549564916
the lambda is 200.0
the regulation term lambda/alpha is 58.48975838044432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 126604.68585329663
the lambda is 200.0
the regulation term lambda/alpha is 0.001579720360680412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 426499777.9816744
the lambda is 200.0
the regulation term lambda/alpha is 4.6893342112969046e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.739717495009973
the lambda is 200.0
the regulation term lambda/alpha is 29.674834315841608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06441671715657547
the lambda is 200.0
the regulation term lambda/alpha is 3104.7841123891326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 20.43110899869424
the lambda is 200.0
the regulation term lambda/alpha is 9.78899383351056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06284059041587214
the lambda is 200.0
the regulation term lambda/alpha is 3182.656284360505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 26.499215946545213
the lambda is 200.0
the regulation term lambda/alpha is 7.54739311545837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 2072.0806488999797
the lambda is 200.0
the regulation term lambda/alpha is 0.0965213396043129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0787352934408809
the lambda is 200.0
the regulation term lambda/alpha is 2540.156913877152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.1674321799015495
the lambda is 200.0
the regulation term lambda/alpha is 63.14263057282459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35538350601998675
the lambda is 200.0
the regulation term lambda/alpha is 562.7723195143221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499986861.50510335
the lambda is 200.0
the regulation term lambda/alpha is 4.0001051107211664e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12209305469912549
the lambda is 200.0
the regulation term lambda/alpha is 1638.094816227352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06215775555300562
the lambda is 200.0
the regulation term lambda/alpha is 3217.6193979438026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.482779143918699
the lambda is 200.0
the regulation term lambda/alpha is 80.55488966462383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30472378171282055
the lambda is 200.0
the regulation term lambda/alpha is 656.3321014061354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3411345.868719765
the lambda is 200.0
the regulation term lambda/alpha is 5.862788696798354e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 544.5127790157179
the lambda is 200.0
the regulation term lambda/alpha is 0.3673008379372246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 234.3484610623924
the lambda is 200.0
the regulation term lambda/alpha is 0.8534299695987867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08506765258791908
the lambda is 200.0
the regulation term lambda/alpha is 2351.069929821986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 492806541.2041829
the lambda is 200.0
the regulation term lambda/alpha is 4.0583876892399983e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 8356.848814664105
the lambda is 200.0
the regulation term lambda/alpha is 0.02393246598515122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.080962050926012
the lambda is 200.0
the regulation term lambda/alpha is 2470.293152316164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.0983472811125297
the lambda is 200.0
the regulation term lambda/alpha is 182.09176955162806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 38702.00701775754
the lambda is 200.0
the regulation term lambda/alpha is 0.005167690655118597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11367982493204642
the lambda is 200.0
the regulation term lambda/alpha is 1759.3271287983823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 73.78906234688522
the lambda is 200.0
the regulation term lambda/alpha is 2.710428803930213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.4581472247944065
the lambda is 200.0
the regulation term lambda/alpha is 57.834437633548234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20001257451491494
the lambda is 200.0
the regulation term lambda/alpha is 999.9371313781375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10300270719830486
the lambda is 200.0
the regulation term lambda/alpha is 1941.6965382759518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06618752229487561
the lambda is 200.0
the regulation term lambda/alpha is 3021.7175846070986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1372294172486081
the lambda is 200.0
the regulation term lambda/alpha is 1457.4134614131256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2285926669560676
the lambda is 200.0
the regulation term lambda/alpha is 89.74273449134643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05882047439468274
the lambda is 200.0
the regulation term lambda/alpha is 3400.176589158547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 362900835.1007093
the lambda is 200.0
the regulation term lambda/alpha is 5.511147417020895e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15422125290747746
the lambda is 200.0
the regulation term lambda/alpha is 1296.838122045259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4664647484965148
the lambda is 200.0
the regulation term lambda/alpha is 136.38241233214023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2797995640231198
the lambda is 200.0
the regulation term lambda/alpha is 714.7973968375235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 18.596639990284785
the lambda is 200.0
the regulation term lambda/alpha is 10.754630949702932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.7813054949348457
the lambda is 200.0
the regulation term lambda/alpha is 52.891785725301766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 10.819696840883116
the lambda is 200.0
the regulation term lambda/alpha is 18.484806269643666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0842979175380143
the lambda is 200.0
the regulation term lambda/alpha is 2372.5378495834093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12431597529233113
the lambda is 200.0
the regulation term lambda/alpha is 1608.80369179984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06156849860385242
the lambda is 200.0
the regulation term lambda/alpha is 3248.4144413988643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38383724493464205
the lambda is 200.0
the regulation term lambda/alpha is 521.0541776217027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4033209702130816
the lambda is 200.0
the regulation term lambda/alpha is 495.8829685804248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2031911761314423
the lambda is 200.0
the regulation term lambda/alpha is 984.294711058821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4480113776946476
the lambda is 200.0
the regulation term lambda/alpha is 446.41723393086363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 419135714.8861832
the lambda is 200.0
the regulation term lambda/alpha is 4.771724119341876e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499248736.5433093
the lambda is 200.0
the regulation term lambda/alpha is 4.0060191515907865e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23637856833409113
the lambda is 200.0
the regulation term lambda/alpha is 846.1003948434334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10407222073645592
the lambda is 200.0
the regulation term lambda/alpha is 1921.7424071930188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.101816861049928
the lambda is 200.0
the regulation term lambda/alpha is 1964.3111949986935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06746187110171058
the lambda is 200.0
the regulation term lambda/alpha is 2964.6376054181037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.4680114732208116
the lambda is 200.0
the regulation term lambda/alpha is 81.03690042372267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08840044630272788
the lambda is 200.0
the regulation term lambda/alpha is 2262.432016633703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13974991827797906
the lambda is 200.0
the regulation term lambda/alpha is 1431.1278494072278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 15124720.148345927
the lambda is 200.0
the regulation term lambda/alpha is 1.3223385162724643e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7129316213177328
the lambda is 200.0
the regulation term lambda/alpha is 116.75889306436119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06537830078737306
the lambda is 200.0
the regulation term lambda/alpha is 3059.1189674759385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8910779808727853
the lambda is 200.0
the regulation term lambda/alpha is 224.44724737121854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2119.93829600216
the lambda is 200.0
the regulation term lambda/alpha is 0.09434236853835119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05536883763225078
the lambda is 200.0
the regulation term lambda/alpha is 3612.1401234456416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07067225551183172
the lambda is 200.0
the regulation term lambda/alpha is 2829.964864592678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08648926549552152
the lambda is 200.0
the regulation term lambda/alpha is 2312.425696462368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2242869616600638
the lambda is 200.0
the regulation term lambda/alpha is 163.36039365216413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06889032833637475
the lambda is 200.0
the regulation term lambda/alpha is 2903.1651442194984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 544287.1533875532
the lambda is 200.0
the regulation term lambda/alpha is 0.00036745309668845407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.5144982623655325
the lambda is 200.0
the regulation term lambda/alpha is 26.61521674729097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6718723062153885
the lambda is 200.0
the regulation term lambda/alpha is 297.67561209150966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.602188875042283
the lambda is 200.0
the regulation term lambda/alpha is 35.70033150631511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9316346302017666
the lambda is 200.0
the regulation term lambda/alpha is 214.67643378250705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0624657112377194
the lambda is 200.0
the regulation term lambda/alpha is 3201.7565483066437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 449.7779207211758
the lambda is 200.0
the regulation term lambda/alpha is 0.4446638903023945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3193243207300463
the lambda is 200.0
the regulation term lambda/alpha is 626.3224784844311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 2748150.985994979
the lambda is 200.0
the regulation term lambda/alpha is 7.277620517185274e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21397293187427427
the lambda is 200.0
the regulation term lambda/alpha is 934.6976659529793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2254186571546039
the lambda is 200.0
the regulation term lambda/alpha is 887.2380064922023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.43024756096948974
the lambda is 200.0
the regulation term lambda/alpha is 464.84865492167813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 582019.593512817
the lambda is 200.0
the regulation term lambda/alpha is 0.0003436310430597139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07462608059974761
the lambda is 200.0
the regulation term lambda/alpha is 2680.0281937984614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07730566760732893
the lambda is 200.0
the regulation term lambda/alpha is 2587.132434013662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  34  iterations
the alpha is 96406485.70819736
the lambda is 200.0
the regulation term lambda/alpha is 2.0745492228122384e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  22  iterations
the alpha is 6020007.678659361
the lambda is 200.0
the regulation term lambda/alpha is 3.322254898594074e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 8408.60736180218
the lambda is 200.0
the regulation term lambda/alpha is 0.023785151499467194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.596702783958414
the lambda is 200.0
the regulation term lambda/alpha is 35.735326266252926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 421.08265871507155
the lambda is 200.0
the regulation term lambda/alpha is 0.4749661280526192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10805478752228408
the lambda is 200.0
the regulation term lambda/alpha is 1850.9128987806682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.23970012425104184
the lambda is 200.0
the regulation term lambda/alpha is 834.3758712053764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.734416377321822
the lambda is 200.0
the regulation term lambda/alpha is 53.555891949957704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.317727774034192
the lambda is 200.0
the regulation term lambda/alpha is 86.29141102791544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 115.67488599903587
the lambda is 200.0
the regulation term lambda/alpha is 1.7289837657732117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.14076228003472
the lambda is 200.0
the regulation term lambda/alpha is 24.567723896139494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10609987549790834
the lambda is 200.0
the regulation term lambda/alpha is 1885.01634956153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08896076227758479
the lambda is 200.0
the regulation term lambda/alpha is 2248.182174697861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.114664034085557
the lambda is 200.0
the regulation term lambda/alpha is 94.57767133514704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20710349771339626
the lambda is 200.0
the regulation term lambda/alpha is 965.7007351791492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06262064599746946
the lambda is 200.0
the regulation term lambda/alpha is 3193.834825787044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4126239703353643
the lambda is 200.0
the regulation term lambda/alpha is 484.7028151017208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2812127117608214
the lambda is 200.0
the regulation term lambda/alpha is 156.10210401763192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.9526517688569767
the lambda is 200.0
the regulation term lambda/alpha is 102.42481695395895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 55.8421280568415
the lambda is 200.0
the regulation term lambda/alpha is 3.581525399541019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 15085614.265985651
the lambda is 200.0
the regulation term lambda/alpha is 1.3257663657153875e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5349055734546045
the lambda is 200.0
the regulation term lambda/alpha is 373.89776798983615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.5208687295812435
the lambda is 200.0
the regulation term lambda/alpha is 26.59267262747928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 601.3334539261258
the lambda is 200.0
the regulation term lambda/alpha is 0.33259416833404737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4485052530612066
the lambda is 200.0
the regulation term lambda/alpha is 138.07336878988107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1924.8156952608772
the lambda is 200.0
the regulation term lambda/alpha is 0.10390605214432921
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 19383082.06378183
the lambda is 200.0
the regulation term lambda/alpha is 1.0318276491936702e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9534.404745813288
the lambda is 200.0
the regulation term lambda/alpha is 0.020976663497301522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5553736956031353
the lambda is 200.0
the regulation term lambda/alpha is 360.11788383819686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.058914983959770545
the lambda is 200.0
the regulation term lambda/alpha is 3394.722132769616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20604305496122008
the lambda is 200.0
the regulation term lambda/alpha is 970.6709116579665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08199991703699282
the lambda is 200.0
the regulation term lambda/alpha is 2439.0268579146673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.296685764955665
the lambda is 200.0
the regulation term lambda/alpha is 19.423725708003204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 90.13462768133837
the lambda is 200.0
the regulation term lambda/alpha is 2.2189030469741247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0957503581780417
the lambda is 200.0
the regulation term lambda/alpha is 2088.765032378393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 15.930597419850127
the lambda is 200.0
the regulation term lambda/alpha is 12.554456981681831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08755156836116539
the lambda is 200.0
the regulation term lambda/alpha is 2284.3679872754005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6414461634711788
the lambda is 200.0
the regulation term lambda/alpha is 121.84377681754634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21329218846771283
the lambda is 200.0
the regulation term lambda/alpha is 937.6808472771381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08225961968979648
the lambda is 200.0
the regulation term lambda/alpha is 2431.3265822794474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 222.09829453585635
the lambda is 200.0
the regulation term lambda/alpha is 0.9005021871868146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20175581113778707
the lambda is 200.0
the regulation term lambda/alpha is 991.2973454004358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.7530494580143707
the lambda is 200.0
the regulation term lambda/alpha is 53.289998503194305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08346952615260105
the lambda is 200.0
the regulation term lambda/alpha is 2396.084046701728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10717937766581279
the lambda is 200.0
the regulation term lambda/alpha is 1866.0306148035638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2569718640741773
the lambda is 200.0
the regulation term lambda/alpha is 778.2953231886435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09600622068601089
the lambda is 200.0
the regulation term lambda/alpha is 2083.1983445541678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08874530165884328
the lambda is 200.0
the regulation term lambda/alpha is 2253.6404323560087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.732360980588839
the lambda is 200.0
the regulation term lambda/alpha is 34.88963808756085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6369572274678326
the lambda is 200.0
the regulation term lambda/alpha is 122.17790217364134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999853.496556
the lambda is 200.0
the regulation term lambda/alpha is 4.0000011720278957e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14622924376263952
the lambda is 200.0
the regulation term lambda/alpha is 1367.7154777921276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10983229998282916
the lambda is 200.0
the regulation term lambda/alpha is 1820.9579516341494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10429916183758464
the lambda is 200.0
the regulation term lambda/alpha is 1917.5609513664294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05807496882167427
the lambda is 200.0
the regulation term lambda/alpha is 3443.824491996242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11531697851332791
the lambda is 200.0
the regulation term lambda/alpha is 1734.3499853916546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.99455994
the lambda is 200.0
the regulation term lambda/alpha is 3.99999999204352e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 487797591.6734159
the lambda is 200.0
the regulation term lambda/alpha is 4.1000612428997286e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2863186896938195
the lambda is 200.0
the regulation term lambda/alpha is 698.5223361208934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 84271054.81556667
the lambda is 200.0
the regulation term lambda/alpha is 2.3732941332906598e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06210780518681134
the lambda is 200.0
the regulation term lambda/alpha is 3220.207176834357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2754343096634195
the lambda is 200.0
the regulation term lambda/alpha is 726.1259508461377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05789236625895483
the lambda is 200.0
the regulation term lambda/alpha is 3454.686911662794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056729583480077055
the lambda is 200.0
the regulation term lambda/alpha is 3525.4974165329154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37806622507609994
the lambda is 200.0
the regulation term lambda/alpha is 529.007847658813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499995528.17097706
the lambda is 200.0
the regulation term lambda/alpha is 4.0000357749521425e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2459.7814033366612
the lambda is 200.0
the regulation term lambda/alpha is 0.08130803807553899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05296296259791241
the lambda is 200.0
the regulation term lambda/alpha is 3776.2238022516362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  22  iterations
the alpha is 18862239.902559392
the lambda is 200.0
the regulation term lambda/alpha is 1.0603194585223268e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 478550289.4755303
the lambda is 200.0
the regulation term lambda/alpha is 4.179289082014579e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 71.85861256431059
the lambda is 200.0
the regulation term lambda/alpha is 2.783243272628009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07564508950796855
the lambda is 200.0
the regulation term lambda/alpha is 2643.9257498522984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 626327.7249126175
the lambda is 200.0
the regulation term lambda/alpha is 0.0003193216459129334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08359243402712899
the lambda is 200.0
the regulation term lambda/alpha is 2392.561029328231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 18.211695112487288
the lambda is 200.0
the regulation term lambda/alpha is 10.98195411051359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21518340390069302
the lambda is 200.0
the regulation term lambda/alpha is 929.4397075914825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 13.483807228388219
the lambda is 200.0
the regulation term lambda/alpha is 14.832606000101272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.307099730014759
the lambda is 200.0
the regulation term lambda/alpha is 46.434959145771785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.479983214319845
the lambda is 200.0
the regulation term lambda/alpha is 30.864277481155867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.2248474376054554
the lambda is 200.0
the regulation term lambda/alpha is 47.33898749095549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.8075091080063546
the lambda is 200.0
the regulation term lambda/alpha is 71.23752490406785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30775496789337137
the lambda is 200.0
the regulation term lambda/alpha is 649.8676572762735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09078343267233152
the lambda is 200.0
the regulation term lambda/alpha is 2203.0451384435796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19756471662197808
the lambda is 200.0
the regulation term lambda/alpha is 1012.3265096099199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1361906105569068
the lambda is 200.0
the regulation term lambda/alpha is 1468.5300196699734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06435168062819865
the lambda is 200.0
the regulation term lambda/alpha is 3107.9219384421294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12900379445074908
the lambda is 200.0
the regulation term lambda/alpha is 1550.3419946019942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3509090409306419
the lambda is 200.0
the regulation term lambda/alpha is 569.9482677037396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 20978308.099270836
the lambda is 200.0
the regulation term lambda/alpha is 9.533657292741906e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08346314263109737
the lambda is 200.0
the regulation term lambda/alpha is 2396.267306683973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2991897893787198
the lambda is 200.0
the regulation term lambda/alpha is 668.4720104095411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.091748280937304
the lambda is 200.0
the regulation term lambda/alpha is 183.1924111923428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.44617611706765864
the lambda is 200.0
the regulation term lambda/alpha is 448.25348634622634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 214239227.52890533
the lambda is 200.0
the regulation term lambda/alpha is 9.335358529194465e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6559798700444838
the lambda is 200.0
the regulation term lambda/alpha is 304.8874045272722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 646.0643853682931
the lambda is 200.0
the regulation term lambda/alpha is 0.30956666940554034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06136657250096767
the lambda is 200.0
the regulation term lambda/alpha is 3259.103317149516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.05009781769392
the lambda is 200.0
the regulation term lambda/alpha is 28.368400718930708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07732244554673612
the lambda is 200.0
the regulation term lambda/alpha is 2586.5710607809697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13798628629706744
the lambda is 200.0
the regulation term lambda/alpha is 1449.4193978771534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06791092916664442
the lambda is 200.0
the regulation term lambda/alpha is 2945.034068216421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05823963059226257
the lambda is 200.0
the regulation term lambda/alpha is 3434.08771597825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 26.993848291960045
the lambda is 200.0
the regulation term lambda/alpha is 7.409095503421377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.06630808349037
the lambda is 200.0
the regulation term lambda/alpha is 65.2250180198268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 367452.1569217974
the lambda is 200.0
the regulation term lambda/alpha is 0.0005442885454134504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09962982758111602
the lambda is 200.0
the regulation term lambda/alpha is 2007.4309557262377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08202498840746067
the lambda is 200.0
the regulation term lambda/alpha is 2438.2813564873213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.126238263916731
the lambda is 200.0
the regulation term lambda/alpha is 177.58231664448857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 742.2023151891187
the lambda is 200.0
the regulation term lambda/alpha is 0.2694683052141093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 127.87156991385868
the lambda is 200.0
the regulation term lambda/alpha is 1.564069324672646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2989371422712494
the lambda is 200.0
the regulation term lambda/alpha is 669.0369703826369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9989929
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920080566e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 290.56443810694594
the lambda is 200.0
the regulation term lambda/alpha is 0.6883154776373132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 18920.193826751238
the lambda is 200.0
the regulation term lambda/alpha is 0.010570716232157213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499089779.04803485
the lambda is 200.0
the regulation term lambda/alpha is 4.0072950478264755e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 15.906683128868446
the lambda is 200.0
the regulation term lambda/alpha is 12.57333149718859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 286329942.8133709
the lambda is 200.0
the regulation term lambda/alpha is 6.98494883332406e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09598035680932347
the lambda is 200.0
the regulation term lambda/alpha is 2083.7597050959507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11497251687096158
the lambda is 200.0
the regulation term lambda/alpha is 1739.5461580132953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061724407348610046
the lambda is 200.0
the regulation term lambda/alpha is 3240.2093206084664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06800769808921614
the lambda is 200.0
the regulation term lambda/alpha is 2940.843545941362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 70.96363929926329
the lambda is 200.0
the regulation term lambda/alpha is 2.818344746336541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0699156031605286
the lambda is 200.0
the regulation term lambda/alpha is 2860.5917843659763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.9476341161050701
the lambda is 200.0
the regulation term lambda/alpha is 211.05192035722862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 11.207796712871522
the lambda is 200.0
the regulation term lambda/alpha is 17.84472052123423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  29  iterations
the alpha is 3166278.724398024
the lambda is 200.0
the regulation term lambda/alpha is 6.31656330375729e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7290857687609237
the lambda is 200.0
the regulation term lambda/alpha is 274.31614848263825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.146299889170354
the lambda is 200.0
the regulation term lambda/alpha is 174.47441275140662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9995081
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992003935e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06808960967751812
the lambda is 200.0
the regulation term lambda/alpha is 2937.3057203180906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.185123376966661
the lambda is 200.0
the regulation term lambda/alpha is 14.099278144083925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4208235263170675
the lambda is 200.0
the regulation term lambda/alpha is 475.25860008432835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 585430.4116494387
the lambda is 200.0
the regulation term lambda/alpha is 0.0003416289895779482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12771903894196043
the lambda is 200.0
the regulation term lambda/alpha is 1565.937245197142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 137085.98665012183
the lambda is 200.0
the regulation term lambda/alpha is 0.0014589383268652446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08940423092416697
the lambda is 200.0
the regulation term lambda/alpha is 2237.030596120678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.44247163401654815
the lambda is 200.0
the regulation term lambda/alpha is 452.00637650936994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20223335902853923
the lambda is 200.0
the regulation term lambda/alpha is 988.9565250794057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 124.73018637977668
the lambda is 200.0
the regulation term lambda/alpha is 1.603461085122112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10580642438581957
the lambda is 200.0
the regulation term lambda/alpha is 1890.2443888539956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499505604.36692435
the lambda is 200.0
the regulation term lambda/alpha is 4.003959079768102e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8539944913939257
the lambda is 200.0
the regulation term lambda/alpha is 107.87518567524438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.785963561174098
the lambda is 200.0
the regulation term lambda/alpha is 29.47260152475624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.3440794458940104
the lambda is 200.0
the regulation term lambda/alpha is 85.32134026017272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09510635965737167
the lambda is 200.0
the regulation term lambda/alpha is 2102.9087930661644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6910231724048665
the lambda is 200.0
the regulation term lambda/alpha is 289.42589479882326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 626.1522892075418
the lambda is 200.0
the regulation term lambda/alpha is 0.31941111363358576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4487566957249246
the lambda is 200.0
the regulation term lambda/alpha is 445.67580139816886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12363002839071524
the lambda is 200.0
the regulation term lambda/alpha is 1617.7299528552096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 119.36589055625399
the lambda is 200.0
the regulation term lambda/alpha is 1.675520528251287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07923553743068867
the lambda is 200.0
the regulation term lambda/alpha is 2524.119940184038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.7837522
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999937299824e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27866503723170044
the lambda is 200.0
the regulation term lambda/alpha is 717.7075459010914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08701437015714857
the lambda is 200.0
the regulation term lambda/alpha is 2298.4709265699285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07623226693277013
the lambda is 200.0
the regulation term lambda/alpha is 2623.5609676461763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.041996845867973
the lambda is 200.0
the regulation term lambda/alpha is 39.66682370376816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08318712226269605
the lambda is 200.0
the regulation term lambda/alpha is 2404.218279945078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.439690847733031
the lambda is 200.0
the regulation term lambda/alpha is 58.144760344323494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09363343105616488
the lambda is 200.0
the regulation term lambda/alpha is 2135.9892267541964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07541403415306955
the lambda is 200.0
the regulation term lambda/alpha is 2652.026273969849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15931310846548036
the lambda is 200.0
the regulation term lambda/alpha is 1255.3894775289982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 12.954482014906583
the lambda is 200.0
the regulation term lambda/alpha is 15.438672095870924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 225.26053941824048
the lambda is 200.0
the regulation term lambda/alpha is 0.8878607878526859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10089612241473196
the lambda is 200.0
the regulation term lambda/alpha is 1982.2367323285534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99999994
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000001e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12510534326423442
the lambda is 200.0
the regulation term lambda/alpha is 1598.6527416145682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 17.67757103527818
the lambda is 200.0
the regulation term lambda/alpha is 11.313771535742706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.623255673656062
the lambda is 200.0
the regulation term lambda/alpha is 320.89559462296717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0609161010138821
the lambda is 200.0
the regulation term lambda/alpha is 3283.204221399893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26707329859916895
the lambda is 200.0
the regulation term lambda/alpha is 748.8580889554428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 28.424430700860544
the lambda is 200.0
the regulation term lambda/alpha is 7.036200728338423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 7865.323237025182
the lambda is 200.0
the regulation term lambda/alpha is 0.025428071291275233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08895798123754513
the lambda is 200.0
the regulation term lambda/alpha is 2248.2524582694673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 1.3284214156506111
the lambda is 200.0
the regulation term lambda/alpha is 150.5546339766342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06649273841089964
the lambda is 200.0
the regulation term lambda/alpha is 3007.84724437241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.084792744662705
the lambda is 200.0
the regulation term lambda/alpha is 95.93279740253396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08052864805605951
the lambda is 200.0
the regulation term lambda/alpha is 2483.588199081292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.42660276701724786
the lambda is 200.0
the regulation term lambda/alpha is 468.82021276695997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 40.75943518982347
the lambda is 200.0
the regulation term lambda/alpha is 4.906839338390405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.481331625604949
the lambda is 200.0
the regulation term lambda/alpha is 135.0136569981915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06510587128163736
the lambda is 200.0
the regulation term lambda/alpha is 3071.9195682802965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10965479083652686
the lambda is 200.0
the regulation term lambda/alpha is 1823.9057178829476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36708049354098793
the lambda is 200.0
the regulation term lambda/alpha is 544.8396292342571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2567267682496362
the lambda is 200.0
the regulation term lambda/alpha is 779.0383580317726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10609231086641037
the lambda is 200.0
the regulation term lambda/alpha is 1885.1507556644383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7251829380453286
the lambda is 200.0
the regulation term lambda/alpha is 275.79247870762606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11137918367930712
the lambda is 200.0
the regulation term lambda/alpha is 1795.6676767883112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2256081639546042
the lambda is 200.0
the regulation term lambda/alpha is 886.4927425243487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.01187473607868
the lambda is 200.0
the regulation term lambda/alpha is 28.523042342859647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24856973478435543
the lambda is 200.0
the regulation term lambda/alpha is 804.6031837846563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0747124345275344
the lambda is 200.0
the regulation term lambda/alpha is 2676.930570724373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 217.57750638959442
the lambda is 200.0
the regulation term lambda/alpha is 0.9192126673328073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30082759317141056
the lambda is 200.0
the regulation term lambda/alpha is 664.8326301837633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06813206467243732
the lambda is 200.0
the regulation term lambda/alpha is 2935.4754029773235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 262.1000472229852
the lambda is 200.0
the regulation term lambda/alpha is 0.7630673939934366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.4947710488352519
the lambda is 200.0
the regulation term lambda/alpha is 404.22737035811423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 31.50140705064276
the lambda is 200.0
the regulation term lambda/alpha is 6.348922753782808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12004880421956644
the lambda is 200.0
the regulation term lambda/alpha is 1665.9891058490236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 158914301.56620768
the lambda is 200.0
the regulation term lambda/alpha is 1.2585399679504302e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1503928286042909
the lambda is 200.0
the regulation term lambda/alpha is 1329.8506441835334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07304781777180545
the lambda is 200.0
the regulation term lambda/alpha is 2737.932577599803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07001505183117149
the lambda is 200.0
the regulation term lambda/alpha is 2856.528628762048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 35260.4683579035
the lambda is 200.0
the regulation term lambda/alpha is 0.005672074402697795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7319277397724379
the lambda is 200.0
the regulation term lambda/alpha is 273.25101800647917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 18.400711017534913
the lambda is 200.0
the regulation term lambda/alpha is 10.869145209085154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 132.43262451267225
the lambda is 200.0
the regulation term lambda/alpha is 1.5102018912330952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16813303103530977
the lambda is 200.0
the regulation term lambda/alpha is 1189.534256109365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15091132170956317
the lambda is 200.0
the regulation term lambda/alpha is 1325.2816139594256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06536161005528783
the lambda is 200.0
the regulation term lambda/alpha is 3059.90014369023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999994.5028752
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000439769986e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 207969.1094860395
the lambda is 200.0
the regulation term lambda/alpha is 0.0009616812828321773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.99558204
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920353437e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.288560213230243
the lambda is 200.0
the regulation term lambda/alpha is 87.3911898161094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8220907491313186
the lambda is 200.0
the regulation term lambda/alpha is 243.28214398633565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05672349088604724
the lambda is 200.0
the regulation term lambda/alpha is 3525.8760854790007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 19.15750921491871
the lambda is 200.0
the regulation term lambda/alpha is 10.439770523208313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.559733556607721
the lambda is 200.0
the regulation term lambda/alpha is 20.921085176245242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12365963612316089
the lambda is 200.0
the regulation term lambda/alpha is 1617.3426210053428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999357.34825784
the lambda is 200.0
the regulation term lambda/alpha is 4.0000051412205453e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5451549648715791
the lambda is 200.0
the regulation term lambda/alpha is 366.86816205941284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 731.0369466894874
the lambda is 200.0
the regulation term lambda/alpha is 0.2735839835533665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 457507602.0454324
the lambda is 200.0
the regulation term lambda/alpha is 4.371512060255103e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8744450600746474
the lambda is 200.0
the regulation term lambda/alpha is 228.7164844672196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0853750407385249
the lambda is 200.0
the regulation term lambda/alpha is 2342.6050315165635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499985071.7395599
the lambda is 200.0
the regulation term lambda/alpha is 4.000119429649275e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 32100.554098150573
the lambda is 200.0
the regulation term lambda/alpha is 0.006230422047808911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12946863337568482
the lambda is 200.0
the regulation term lambda/alpha is 1544.7757096473802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12784300074802107
the lambda is 200.0
the regulation term lambda/alpha is 1564.4188483513508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 34304.527267178
the lambda is 200.0
the regulation term lambda/alpha is 0.005830134268935304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4892856447218271
the lambda is 200.0
the regulation term lambda/alpha is 408.7591822026696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19102416991634846
the lambda is 200.0
the regulation term lambda/alpha is 1046.9879287400236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3278377731783402
the lambda is 200.0
the regulation term lambda/alpha is 610.0578284833645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 493619925.9056832
the lambda is 200.0
the regulation term lambda/alpha is 4.0517002961953834e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 46.488050493053066
the lambda is 200.0
the regulation term lambda/alpha is 4.302180837415133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06746028045335552
the lambda is 200.0
the regulation term lambda/alpha is 2964.707508713772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 71.22285448421117
the lambda is 200.0
the regulation term lambda/alpha is 2.80808739622106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6535635165988608
the lambda is 200.0
the regulation term lambda/alpha is 306.01463349851343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1931193139053366
the lambda is 200.0
the regulation term lambda/alpha is 1035.6291970778034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 76.36520825272912
the lambda is 200.0
the regulation term lambda/alpha is 2.6189937089951227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.894487556009073
the lambda is 200.0
the regulation term lambda/alpha is 105.56944508061058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0500760195249905
the lambda is 200.0
the regulation term lambda/alpha is 190.46240108451525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07454274727221932
the lambda is 200.0
the regulation term lambda/alpha is 2683.0242688752664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6692385034205582
the lambda is 200.0
the regulation term lambda/alpha is 298.8471209856815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09105045573335734
the lambda is 200.0
the regulation term lambda/alpha is 2196.5842827377282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3803323619853014
the lambda is 200.0
the regulation term lambda/alpha is 144.89263999602562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07386893440612802
the lambda is 200.0
the regulation term lambda/alpha is 2707.498106042916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.9916448594374327
the lambda is 200.0
the regulation term lambda/alpha is 66.85285500017848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2296.2216171500763
the lambda is 200.0
the regulation term lambda/alpha is 0.08709960680895741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9813925442676286
the lambda is 200.0
the regulation term lambda/alpha is 203.79205157835338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10571681086761021
the lambda is 200.0
the regulation term lambda/alpha is 1891.8467021338847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12631433742115283
the lambda is 200.0
the regulation term lambda/alpha is 1583.3515346176976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11364936120844389
the lambda is 200.0
the regulation term lambda/alpha is 1759.7987166261385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06268108987702053
the lambda is 200.0
the regulation term lambda/alpha is 3190.7549851541726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28300780485177
the lambda is 200.0
the regulation term lambda/alpha is 706.6942910099363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13467035229774776
the lambda is 200.0
the regulation term lambda/alpha is 1485.1078696060174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2214234484154849
the lambda is 200.0
the regulation term lambda/alpha is 903.2467041372901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 456743804.2354023
the lambda is 200.0
the regulation term lambda/alpha is 4.378822397707261e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16987346892404914
the lambda is 200.0
the regulation term lambda/alpha is 1177.3468880500727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21358345723843572
the lambda is 200.0
the regulation term lambda/alpha is 936.4021099102647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 54707.2772459234
the lambda is 200.0
the regulation term lambda/alpha is 0.0036558207622168462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4858757252549477
the lambda is 200.0
the regulation term lambda/alpha is 134.60075873147724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06883959819683917
the lambda is 200.0
the regulation term lambda/alpha is 2905.3045810657154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10372467897909299
the lambda is 200.0
the regulation term lambda/alpha is 1928.1814315406318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06864740878437797
the lambda is 200.0
the regulation term lambda/alpha is 2913.4384464270383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 106932.0201027041
the lambda is 200.0
the regulation term lambda/alpha is 0.0018703471589511511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1136368491583632
the lambda is 200.0
the regulation term lambda/alpha is 1759.9924802673995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.496385965020968
the lambda is 200.0
the regulation term lambda/alpha is 30.786348144472427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12647012837224608
the lambda is 200.0
the regulation term lambda/alpha is 1581.401099011536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0901888508266802
the lambda is 200.0
the regulation term lambda/alpha is 2217.569002895365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 400147139.4430501
the lambda is 200.0
the regulation term lambda/alpha is 4.998161433276084e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4906867767951733
the lambda is 200.0
the regulation term lambda/alpha is 407.5919903655478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.053088004900062824
the lambda is 200.0
the regulation term lambda/alpha is 3767.329368969436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7559324420903094
the lambda is 200.0
the regulation term lambda/alpha is 264.5739074869689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.055515769409389196
the lambda is 200.0
the regulation term lambda/alpha is 3602.5799899329986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.357989674495451
the lambda is 200.0
the regulation term lambda/alpha is 84.81801348124853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7049051873074903
the lambda is 200.0
the regulation term lambda/alpha is 117.308576153642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 28.266429618782034
the lambda is 200.0
the regulation term lambda/alpha is 7.075531034422088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 64.94021719109402
the lambda is 200.0
the regulation term lambda/alpha is 3.079755637580902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11552794799909734
the lambda is 200.0
the regulation term lambda/alpha is 1731.1828303361076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.22102065312047509
the lambda is 200.0
the regulation term lambda/alpha is 904.8928105871761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12258387045555234
the lambda is 200.0
the regulation term lambda/alpha is 1631.5360190272174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07569531989714909
the lambda is 200.0
the regulation term lambda/alpha is 2642.171276530038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08828336270015465
the lambda is 200.0
the regulation term lambda/alpha is 2265.4325105317907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09381966255457347
the lambda is 200.0
the regulation term lambda/alpha is 2131.749300245703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2024643317632332
the lambda is 200.0
the regulation term lambda/alpha is 987.8283165149551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09084491149927024
the lambda is 200.0
the regulation term lambda/alpha is 2201.5542389691977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  30  iterations
the alpha is 4246793.08102547
the lambda is 200.0
the regulation term lambda/alpha is 4.709435948117965e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 514.8184495314423
the lambda is 200.0
the regulation term lambda/alpha is 0.3884864658250463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 408183391.0204504
the lambda is 200.0
the regulation term lambda/alpha is 4.899758402712172e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.48775133766698464
the lambda is 200.0
the regulation term lambda/alpha is 410.04500563061765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499710776.95239836
the lambda is 200.0
the regulation term lambda/alpha is 4.0023151235549937e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22053748317692728
the lambda is 200.0
the regulation term lambda/alpha is 906.8753171520916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07549704048054533
the lambda is 200.0
the regulation term lambda/alpha is 2649.1104648206388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1022.207888779366
the lambda is 200.0
the regulation term lambda/alpha is 0.19565491735621707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06954000705618019
the lambda is 200.0
the regulation term lambda/alpha is 2876.0422735997627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11953638917264371
the lambda is 200.0
the regulation term lambda/alpha is 1673.1306791536467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.04882302036593
the lambda is 200.0
the regulation term lambda/alpha is 190.68994112106813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.654583349838244
the lambda is 200.0
the regulation term lambda/alpha is 54.72580068774522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10270815825863579
the lambda is 200.0
the regulation term lambda/alpha is 1947.2649825573503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06624482415717474
the lambda is 200.0
the regulation term lambda/alpha is 3019.1037948183416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08447773922956917
the lambda is 200.0
the regulation term lambda/alpha is 2367.487598792125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15940246430934496
the lambda is 200.0
the regulation term lambda/alpha is 1254.6857469647978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.6687705647179096
the lambda is 200.0
the regulation term lambda/alpha is 54.51417483648992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06398127510844918
the lambda is 200.0
the regulation term lambda/alpha is 3125.9145689265665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1122140860827576
the lambda is 200.0
the regulation term lambda/alpha is 1782.3074355611693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.252610010496277
the lambda is 200.0
the regulation term lambda/alpha is 19.507227895652594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.5523363216451274
the lambda is 200.0
the regulation term lambda/alpha is 78.35957914476118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7259453631538197
the lambda is 200.0
the regulation term lambda/alpha is 275.5028272804357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.48463545542858766
the lambda is 200.0
the regulation term lambda/alpha is 412.6813211037766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14107502933388685
the lambda is 200.0
the regulation term lambda/alpha is 1417.6853334310035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2557145842263733
the lambda is 200.0
the regulation term lambda/alpha is 159.2718620236596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  23  iterations
the alpha is 182484673.4218706
the lambda is 200.0
the regulation term lambda/alpha is 1.0959824529353061e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 309725243.50104254
the lambda is 200.0
the regulation term lambda/alpha is 6.457336113106544e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08118540721066696
the lambda is 200.0
the regulation term lambda/alpha is 2463.4969124564786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24016639923234837
the lambda is 200.0
the regulation term lambda/alpha is 832.7559585323612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29021976106545583
the lambda is 200.0
the regulation term lambda/alpha is 689.1329496852981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06410876525771342
the lambda is 200.0
the regulation term lambda/alpha is 3119.6982065714715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11355599280629597
the lambda is 200.0
the regulation term lambda/alpha is 1761.2456644288284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08177224900087804
the lambda is 200.0
the regulation term lambda/alpha is 2445.817529096607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17497745552485947
the lambda is 200.0
the regulation term lambda/alpha is 1143.0043910518834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24203815958012326
the lambda is 200.0
the regulation term lambda/alpha is 826.3159840041375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08097575701523352
the lambda is 200.0
the regulation term lambda/alpha is 2469.875026452363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1942243745753122
the lambda is 200.0
the regulation term lambda/alpha is 1029.7368723020306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8200591280984335
the lambda is 200.0
the regulation term lambda/alpha is 243.88485311268136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2571601113296497
the lambda is 200.0
the regulation term lambda/alpha is 777.7255926896959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06825759197290784
the lambda is 200.0
the regulation term lambda/alpha is 2930.076995382171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08581919032811881
the lambda is 200.0
the regulation term lambda/alpha is 2330.4810874505492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8914484079928875
the lambda is 200.0
the regulation term lambda/alpha is 224.35398190940032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09276373249438365
the lambda is 200.0
the regulation term lambda/alpha is 2156.015013864486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0960454998735862
the lambda is 200.0
the regulation term lambda/alpha is 2082.3463906506536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08512769459713795
the lambda is 200.0
the regulation term lambda/alpha is 2349.411680258567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 246.9446954275918
the lambda is 200.0
the regulation term lambda/alpha is 0.8098979395110889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 274463889.5204942
the lambda is 200.0
the regulation term lambda/alpha is 7.286933095257546e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15743711570844415
the lambda is 200.0
the regulation term lambda/alpha is 1270.348475961523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09993847814099448
the lambda is 200.0
the regulation term lambda/alpha is 2001.2311946339373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0677523180767638
the lambda is 200.0
the regulation term lambda/alpha is 2951.928519602809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1697713692146365
the lambda is 200.0
the regulation term lambda/alpha is 170.9735810462487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.390223563069518
the lambda is 200.0
the regulation term lambda/alpha is 45.55576660887988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0627176139131955
the lambda is 200.0
the regulation term lambda/alpha is 188.19674895906667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499997029.86422604
the lambda is 200.0
the regulation term lambda/alpha is 4.00002376122734e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.521129414205186
the lambda is 200.0
the regulation term lambda/alpha is 36.224472385201594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07682846931620144
the lambda is 200.0
the regulation term lambda/alpha is 2603.201674848732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1575008620528478
the lambda is 200.0
the regulation term lambda/alpha is 1269.8343195918003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499913972.26360685
the lambda is 200.0
the regulation term lambda/alpha is 4.0006883403238653e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 225.63330992704337
the lambda is 200.0
the regulation term lambda/alpha is 0.8863939462868683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0892134802689535
the lambda is 200.0
the regulation term lambda/alpha is 2241.813674313079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07467088134897626
the lambda is 200.0
the regulation term lambda/alpha is 2678.4202407534863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 299720070.581455
the lambda is 200.0
the regulation term lambda/alpha is 6.672893130313272e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06242741107305233
the lambda is 200.0
the regulation term lambda/alpha is 3203.7208745683965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11791306273703124
the lambda is 200.0
the regulation term lambda/alpha is 1696.164914705323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07907983302050473
the lambda is 200.0
the regulation term lambda/alpha is 2529.0898116608532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.062063196816920636
the lambda is 200.0
the regulation term lambda/alpha is 3222.5217239449853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.986374832346004
the lambda is 200.0
the regulation term lambda/alpha is 33.409200994121825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0839351401840635
the lambda is 200.0
the regulation term lambda/alpha is 2382.792231732918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06053699266632041
the lambda is 200.0
the regulation term lambda/alpha is 3303.765040037568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8691274056314386
the lambda is 200.0
the regulation term lambda/alpha is 107.00180169496521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4789725998651172
the lambda is 200.0
the regulation term lambda/alpha is 417.5604200664541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10965840605363153
the lambda is 200.0
the regulation term lambda/alpha is 1823.8455873796338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.0653120189466287
the lambda is 200.0
the regulation term lambda/alpha is 96.83766819020693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31573378986793654
the lambda is 200.0
the regulation term lambda/alpha is 633.4450300161251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12803173429673168
the lambda is 200.0
the regulation term lambda/alpha is 1562.1127144655534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16836596619049188
the lambda is 200.0
the regulation term lambda/alpha is 1187.8885295245293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8052933036057743
the lambda is 200.0
the regulation term lambda/alpha is 248.35671562706622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2360657430190068
the lambda is 200.0
the regulation term lambda/alpha is 847.2216148020132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08734462672662568
the lambda is 200.0
the regulation term lambda/alpha is 2289.780236006585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.588368220104261
the lambda is 200.0
the regulation term lambda/alpha is 35.7886223890001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 15.82023388552963
the lambda is 200.0
the regulation term lambda/alpha is 12.64203812959649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05933324060080198
the lambda is 200.0
the regulation term lambda/alpha is 3370.791785090813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08960430400147093
the lambda is 200.0
the regulation term lambda/alpha is 2232.0356396799516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.062002642353663
the lambda is 200.0
the regulation term lambda/alpha is 3225.668978092905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17866994667458005
the lambda is 200.0
the regulation term lambda/alpha is 1119.3824351684023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 94.05504700453913
the lambda is 200.0
the regulation term lambda/alpha is 2.126414332559399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07289767331501128
the lambda is 200.0
the regulation term lambda/alpha is 2743.5717891261625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06865897540674845
the lambda is 200.0
the regulation term lambda/alpha is 2912.947634525028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06182614258226127
the lambda is 200.0
the regulation term lambda/alpha is 3234.8775396086676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35683758309048025
the lambda is 200.0
the regulation term lambda/alpha is 560.4790792153967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7820326252954761
the lambda is 200.0
the regulation term lambda/alpha is 255.74380598818854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 352.60439213579735
the lambda is 200.0
the regulation term lambda/alpha is 0.5672079090919964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.4082639834063357
the lambda is 200.0
the regulation term lambda/alpha is 83.04737411598572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2350448731734871
the lambda is 200.0
the regulation term lambda/alpha is 850.9013504514076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.361270720241372
the lambda is 200.0
the regulation term lambda/alpha is 146.9215469238457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15165972930819294
the lambda is 200.0
the regulation term lambda/alpha is 1318.741639011983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2206591128196992
the lambda is 200.0
the regulation term lambda/alpha is 906.3754378611148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1285543780446142
the lambda is 200.0
the regulation term lambda/alpha is 1555.7618732408391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06128626861281911
the lambda is 200.0
the regulation term lambda/alpha is 3263.373746303857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5811324365872191
the lambda is 200.0
the regulation term lambda/alpha is 344.15563029750626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2198240376346663
the lambda is 200.0
the regulation term lambda/alpha is 909.8186083379444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6532788311316321
the lambda is 200.0
the regulation term lambda/alpha is 306.14798837665245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 76.78146730537873
the lambda is 200.0
the regulation term lambda/alpha is 2.604795232742179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 65.71119696617265
the lambda is 200.0
the regulation term lambda/alpha is 3.043621319254885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.10366374160328
the lambda is 200.0
the regulation term lambda/alpha is 181.21461497816557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 40.891322339315
the lambda is 200.0
the regulation term lambda/alpha is 4.891013265367302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2371884167371311
the lambda is 200.0
the regulation term lambda/alpha is 843.2114972193355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056847948811595925
the lambda is 200.0
the regulation term lambda/alpha is 3518.156840853398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 12.692638451325426
the lambda is 200.0
the regulation term lambda/alpha is 15.757165128981914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1393380364536571
the lambda is 200.0
the regulation term lambda/alpha is 1435.3582488333589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499378573.56086123
the lambda is 200.0
the regulation term lambda/alpha is 4.0049775979350305e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.9636664474262355
the lambda is 200.0
the regulation term lambda/alpha is 40.292796084979514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35752545609064357
the lambda is 200.0
the regulation term lambda/alpha is 559.4007268374588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999212
the lambda is 200.0
the regulation term lambda/alpha is 3.99999999200063e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0626692266258941
the lambda is 200.0
the regulation term lambda/alpha is 3191.3589933685676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.233020199801877
the lambda is 200.0
the regulation term lambda/alpha is 47.24758932389712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06262486952737051
the lambda is 200.0
the regulation term lambda/alpha is 3193.6194280227446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.3577456419997054
the lambda is 200.0
the regulation term lambda/alpha is 84.8267923550784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08582512458846416
the lambda is 200.0
the regulation term lambda/alpha is 2330.3199495370404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 5299830.375046921
the lambda is 200.0
the regulation term lambda/alpha is 3.7737056820092917e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 497317753.55678827
the lambda is 200.0
the regulation term lambda/alpha is 4.0215737035247866e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06455908611585846
the lambda is 200.0
the regulation term lambda/alpha is 3097.9372855600486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06690851402573877
the lambda is 200.0
the regulation term lambda/alpha is 2989.15620698231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10488601120654144
the lambda is 200.0
the regulation term lambda/alpha is 1906.831975964461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6843121311956455
the lambda is 200.0
the regulation term lambda/alpha is 118.74283649434126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.6146890280086192
the lambda is 200.0
the regulation term lambda/alpha is 55.32979419537583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 415.6553649137197
the lambda is 200.0
the regulation term lambda/alpha is 0.48116785414646407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3400183044653281
the lambda is 200.0
the regulation term lambda/alpha is 588.2036271973533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1513.3890182610742
the lambda is 200.0
the regulation term lambda/alpha is 0.132153727552355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12774025552331716
the lambda is 200.0
the regulation term lambda/alpha is 1565.677156199933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 100444692.85667273
the lambda is 200.0
the regulation term lambda/alpha is 1.9911455181149835e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06821158227297429
the lambda is 200.0
the regulation term lambda/alpha is 2932.0533747425006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3909369924296717
the lambda is 200.0
the regulation term lambda/alpha is 511.5913916383325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07952719461997078
the lambda is 200.0
the regulation term lambda/alpha is 2514.86300951167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4586179647601397
the lambda is 200.0
the regulation term lambda/alpha is 436.0928166095747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 478450623.3855841
the lambda is 200.0
the regulation term lambda/alpha is 4.180159670077798e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07427380378610443
the lambda is 200.0
the regulation term lambda/alpha is 2692.7394290450648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0683806530520169
the lambda is 200.0
the regulation term lambda/alpha is 2924.803889308585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5870641970877333
the lambda is 200.0
the regulation term lambda/alpha is 126.01884685383268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08654172086751648
the lambda is 200.0
the regulation term lambda/alpha is 2311.0240701842827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9985937
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920112504e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8039842510199173
the lambda is 200.0
the regulation term lambda/alpha is 110.86571287245226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5695204817540812
the lambda is 200.0
the regulation term lambda/alpha is 351.1726204894593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07982534315902862
the lambda is 200.0
the regulation term lambda/alpha is 2505.469968372808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6131509805120432
the lambda is 200.0
the regulation term lambda/alpha is 123.9809555436134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1984025470028658
the lambda is 200.0
the regulation term lambda/alpha is 1008.0515750491405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 25.064531784405307
the lambda is 200.0
the regulation term lambda/alpha is 7.979402995448586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05783839600598009
the lambda is 200.0
the regulation term lambda/alpha is 3457.910554423421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4556516912345357
the lambda is 200.0
the regulation term lambda/alpha is 438.93176267627376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 2736.0660695847987
the lambda is 200.0
the regulation term lambda/alpha is 0.07309765002507788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 466053305.5423121
the lambda is 200.0
the regulation term lambda/alpha is 4.2913546073291907e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29664764979464714
the lambda is 200.0
the regulation term lambda/alpha is 674.2005208483836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13774238503262518
the lambda is 200.0
the regulation term lambda/alpha is 1451.9858934679307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09475756731823014
the lambda is 200.0
the regulation term lambda/alpha is 2110.649372501594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 488058376.6826185
the lambda is 200.0
the regulation term lambda/alpha is 4.0978704506501856e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1286.589286134453
the lambda is 200.0
the regulation term lambda/alpha is 0.15544976330472823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31159973162425353
the lambda is 200.0
the regulation term lambda/alpha is 641.8490765620188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26528011475419905
the lambda is 200.0
the regulation term lambda/alpha is 753.9200598782697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0829716359790197
the lambda is 200.0
the regulation term lambda/alpha is 2410.4622940130075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.6224963948449878
the lambda is 200.0
the regulation term lambda/alpha is 76.26321256080192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 4047.628684881851
the lambda is 200.0
the regulation term lambda/alpha is 0.04941164705819302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24952481493460413
the lambda is 200.0
the regulation term lambda/alpha is 801.5234879641783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 171.90694068673838
the lambda is 200.0
the regulation term lambda/alpha is 1.163420157447016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.810063938782658
the lambda is 200.0
the regulation term lambda/alpha is 22.70131084061522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08154927471989334
the lambda is 200.0
the regulation term lambda/alpha is 2452.504950987767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23798174908499192
the lambda is 200.0
the regulation term lambda/alpha is 840.4005801662241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 10.853116581939672
the lambda is 200.0
the regulation term lambda/alpha is 18.42788644994505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09089448002783261
the lambda is 200.0
the regulation term lambda/alpha is 2200.3536401633896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15930942970509723
the lambda is 200.0
the regulation term lambda/alpha is 1255.4184668806258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17792957548803917
the lambda is 200.0
the regulation term lambda/alpha is 1124.040224630584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.57179390501169
the lambda is 200.0
the regulation term lambda/alpha is 23.332338856521684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 384.0371543389885
the lambda is 200.0
the regulation term lambda/alpha is 0.5207829444113122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 474936422.5409578
the lambda is 200.0
the regulation term lambda/alpha is 4.2110899587355254e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 482986865.3223549
the lambda is 200.0
the regulation term lambda/alpha is 4.140899356890711e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35882068332281813
the lambda is 200.0
the regulation term lambda/alpha is 557.3814701759184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.739208200652481
the lambda is 200.0
the regulation term lambda/alpha is 20.535550311636314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08010158442728607
the lambda is 200.0
the regulation term lambda/alpha is 2496.829512549209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06855667669829388
the lambda is 200.0
the regulation term lambda/alpha is 2917.2942685096236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 16758.880600854132
the lambda is 200.0
the regulation term lambda/alpha is 0.011933971293393355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13128576906949535
the lambda is 200.0
the regulation term lambda/alpha is 1523.3943588671152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06380182078233589
the lambda is 200.0
the regulation term lambda/alpha is 3134.7067771359248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6859494451153064
the lambda is 200.0
the regulation term lambda/alpha is 291.5666765593498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499976033.9365247
the lambda is 200.0
the regulation term lambda/alpha is 4.0001917376981983e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17551629058775606
the lambda is 200.0
the regulation term lambda/alpha is 1139.4953672405832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.342980663772845
the lambda is 200.0
the regulation term lambda/alpha is 148.92247177866182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 6898308.735683179
the lambda is 200.0
the regulation term lambda/alpha is 2.89926136482485e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 291713841.62813866
the lambda is 200.0
the regulation term lambda/alpha is 6.856033943529817e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06536467174152442
the lambda is 200.0
the regulation term lambda/alpha is 3059.7568177328635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07273574893991631
the lambda is 200.0
the regulation term lambda/alpha is 2749.6795305594624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07968073280618371
the lambda is 200.0
the regulation term lambda/alpha is 2510.0170763549854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17415224491721734
the lambda is 200.0
the regulation term lambda/alpha is 1148.4204530069037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07159367736808529
the lambda is 200.0
the regulation term lambda/alpha is 2793.542772942616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0716757723874211
the lambda is 200.0
the regulation term lambda/alpha is 2790.343142993454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061511531050213536
the lambda is 200.0
the regulation term lambda/alpha is 3251.422889095941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0661153424055785
the lambda is 200.0
the regulation term lambda/alpha is 187.59696258448056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 58332.26676267315
the lambda is 200.0
the regulation term lambda/alpha is 0.0034286341179523665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0409558966945252
the lambda is 200.0
the regulation term lambda/alpha is 192.13109857495837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 10274.76517938558
the lambda is 200.0
the regulation term lambda/alpha is 0.01946516504350514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3995376001739897
the lambda is 200.0
the regulation term lambda/alpha is 500.5786687233053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08729255828508577
the lambda is 200.0
the regulation term lambda/alpha is 2291.1460487482436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1393302953711627
the lambda is 200.0
the regulation term lambda/alpha is 1435.4379962176852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2590914182030075
the lambda is 200.0
the regulation term lambda/alpha is 771.9283077268609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38301177907714246
the lambda is 200.0
the regulation term lambda/alpha is 522.1771520497232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 206537689.26760367
the lambda is 200.0
the regulation term lambda/alpha is 9.683462650773971e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11008265910606153
the lambda is 200.0
the regulation term lambda/alpha is 1816.8165778708674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5115957914980642
the lambda is 200.0
the regulation term lambda/alpha is 390.93363026766957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 10686436.802629525
the lambda is 200.0
the regulation term lambda/alpha is 1.871531210017427e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06423948603534536
the lambda is 200.0
the regulation term lambda/alpha is 3113.349940096929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1625262314584706
the lambda is 200.0
the regulation term lambda/alpha is 172.03912874214114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25211329107419284
the lambda is 200.0
the regulation term lambda/alpha is 793.2941541790561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06693033894517397
the lambda is 200.0
the regulation term lambda/alpha is 2988.1814906664395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15748054842963854
the lambda is 200.0
the regulation term lambda/alpha is 1269.9981171919712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3256423505842093
the lambda is 200.0
the regulation term lambda/alpha is 614.170729455784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15677375139069644
the lambda is 200.0
the regulation term lambda/alpha is 1275.7237625932626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 178450.75998047963
the lambda is 200.0
the regulation term lambda/alpha is 0.0011207573451739719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08378405786943643
the lambda is 200.0
the regulation term lambda/alpha is 2387.0889652022684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5112391944645422
the lambda is 200.0
the regulation term lambda/alpha is 391.2063123592753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.24963551836783884
the lambda is 200.0
the regulation term lambda/alpha is 801.168044145462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07980692070567459
the lambda is 200.0
the regulation term lambda/alpha is 2506.0483255279787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16835877060035634
the lambda is 200.0
the regulation term lambda/alpha is 1187.9392994306927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10402929019103059
the lambda is 200.0
the regulation term lambda/alpha is 1922.535467008733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08004931860831334
the lambda is 200.0
the regulation term lambda/alpha is 2498.4597430318345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13240631747167272
the lambda is 200.0
the regulation term lambda/alpha is 1510.5019444618902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 409092307.36119634
the lambda is 200.0
the regulation term lambda/alpha is 4.888872178752942e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2016014081422097
the lambda is 200.0
the regulation term lambda/alpha is 992.0565627146807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05663420777870322
the lambda is 200.0
the regulation term lambda/alpha is 3531.4345842268176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.658480841299507
the lambda is 200.0
the regulation term lambda/alpha is 11.326002604495947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06634477922159246
the lambda is 200.0
the regulation term lambda/alpha is 3014.55521212901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06603401781641711
the lambda is 200.0
the regulation term lambda/alpha is 3028.7419517017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33985897588968617
the lambda is 200.0
the regulation term lambda/alpha is 588.4793817095401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.25317543688995336
the lambda is 200.0
the regulation term lambda/alpha is 789.9660506438984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06800889425238665
the lambda is 200.0
the regulation term lambda/alpha is 2940.7918214018214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.058738710755546195
the lambda is 200.0
the regulation term lambda/alpha is 3404.9095975623827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09413646968881673
the lambda is 200.0
the regulation term lambda/alpha is 2124.575105282068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11650696541871759
the lambda is 200.0
the regulation term lambda/alpha is 1716.6355614981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13775525327959648
the lambda is 200.0
the regulation term lambda/alpha is 1451.850257892291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14006291060929468
the lambda is 200.0
the regulation term lambda/alpha is 1427.9297719144204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07665164161677394
the lambda is 200.0
the regulation term lambda/alpha is 2609.207001722365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0641523640272665
the lambda is 200.0
the regulation term lambda/alpha is 3117.578019650134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.43431885178786006
the lambda is 200.0
the regulation term lambda/alpha is 460.4911787197498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.027379835071665
the lambda is 200.0
the regulation term lambda/alpha is 49.660078808146764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9975644
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992019485e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12317793066478344
the lambda is 200.0
the regulation term lambda/alpha is 1623.6674777747342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06300018172697971
the lambda is 200.0
the regulation term lambda/alpha is 3174.5940173113877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10591037890531907
the lambda is 200.0
the regulation term lambda/alpha is 1888.389051830269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 70.15365004505259
the lambda is 200.0
the regulation term lambda/alpha is 2.850885162376587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09958258907035861
the lambda is 200.0
the regulation term lambda/alpha is 2008.38321103193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13456407197210796
the lambda is 200.0
the regulation term lambda/alpha is 1486.2808256980763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 200.48038484194657
the lambda is 200.0
the regulation term lambda/alpha is 0.9976038312061037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0673645285011647
the lambda is 200.0
the regulation term lambda/alpha is 2968.9215444674583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 733.1610232269935
the lambda is 200.0
the regulation term lambda/alpha is 0.27279137005906834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 239462710.0450327
the lambda is 200.0
the regulation term lambda/alpha is 8.352031093375187e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4194755957003513
the lambda is 200.0
the regulation term lambda/alpha is 476.78578217663045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 16.835382837995798
the lambda is 200.0
the regulation term lambda/alpha is 11.879741727560821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0790933011958653
the lambda is 200.0
the regulation term lambda/alpha is 2528.6591528746967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1787.97844040568
the lambda is 200.0
the regulation term lambda/alpha is 0.11185817204519613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14530757829690386
the lambda is 200.0
the regulation term lambda/alpha is 1376.3907040783813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2006965627763508
the lambda is 200.0
the regulation term lambda/alpha is 996.5292740109005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06200032547808411
the lambda is 200.0
the regulation term lambda/alpha is 3225.789517358196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07442572434871077
the lambda is 200.0
the regulation term lambda/alpha is 2687.2429089561756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6966890580482945
the lambda is 200.0
the regulation term lambda/alpha is 287.0721130030091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05967707253470954
the lambda is 200.0
the regulation term lambda/alpha is 3351.370828112848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3213139310753346
the lambda is 200.0
the regulation term lambda/alpha is 622.444222479443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09045185839427529
the lambda is 200.0
the regulation term lambda/alpha is 2211.1209603699863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.131477577864908
the lambda is 200.0
the regulation term lambda/alpha is 1521.1719233639835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07556036582319518
the lambda is 200.0
the regulation term lambda/alpha is 2646.8903084453423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07332429416171525
the lambda is 200.0
the regulation term lambda/alpha is 2727.608936253843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 461707897.80685765
the lambda is 200.0
the regulation term lambda/alpha is 4.331743098829648e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7355719285330268
the lambda is 200.0
the regulation term lambda/alpha is 271.89727101041774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6742895281819612
the lambda is 200.0
the regulation term lambda/alpha is 296.6084918139627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2710860370224453
the lambda is 200.0
the regulation term lambda/alpha is 737.773152010188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 197232832.65980488
the lambda is 200.0
the regulation term lambda/alpha is 1.0140299528373556e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2576.9361757384595
the lambda is 200.0
the regulation term lambda/alpha is 0.07761154578952155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 276119715.2165077
the lambda is 200.0
the regulation term lambda/alpha is 7.243235052708149e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.45865510847874
the lambda is 200.0
the regulation term lambda/alpha is 23.644420706966184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0747318621616048
the lambda is 200.0
the regulation term lambda/alpha is 2676.234663703517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09805861137175144
the lambda is 200.0
the regulation term lambda/alpha is 2039.5964944045259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 154869.76131198657
the lambda is 200.0
the regulation term lambda/alpha is 0.001291407685436398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 267.56554964603123
the lambda is 200.0
the regulation term lambda/alpha is 0.7474803847677128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2104682355039412
the lambda is 200.0
the regulation term lambda/alpha is 950.2621596134151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 354.8459500882818
the lambda is 200.0
the regulation term lambda/alpha is 0.5636248629870009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0960012767236518
the lambda is 200.0
the regulation term lambda/alpha is 2083.3056270253337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14845840485147396
the lambda is 200.0
the regulation term lambda/alpha is 1347.178694261811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5346627097117808
the lambda is 200.0
the regulation term lambda/alpha is 374.0676063004534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5651060978769817
the lambda is 200.0
the regulation term lambda/alpha is 353.9158412046336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.99905014
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920075986e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.057769137381112785
the lambda is 200.0
the regulation term lambda/alpha is 3462.056195863998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 258.77010390048883
the lambda is 200.0
the regulation term lambda/alpha is 0.7728868095091498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3299416642716558
the lambda is 200.0
the regulation term lambda/alpha is 606.1677613268357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07092973664447355
the lambda is 200.0
the regulation term lambda/alpha is 2819.691845219658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 33006802.81519107
the lambda is 200.0
the regulation term lambda/alpha is 6.059356948924234e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06100242723909311
the lambda is 200.0
the regulation term lambda/alpha is 3278.558068126033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2976919058558935
the lambda is 200.0
the regulation term lambda/alpha is 671.8355321921848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07244568233879503
the lambda is 200.0
the regulation term lambda/alpha is 2760.689023048914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07719091787405424
the lambda is 200.0
the regulation term lambda/alpha is 2590.9783884980193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999992
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000006e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 87401.84861622732
the lambda is 200.0
the regulation term lambda/alpha is 0.0022882811195239104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2644751011669363
the lambda is 200.0
the regulation term lambda/alpha is 756.2148539410532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 57515879.99229737
the lambda is 200.0
the regulation term lambda/alpha is 3.4773005303367407e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 359.12398421595697
the lambda is 200.0
the regulation term lambda/alpha is 0.5569107294146393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3642492713257233
the lambda is 200.0
the regulation term lambda/alpha is 549.0745369841896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06466382312374215
the lambda is 200.0
the regulation term lambda/alpha is 3092.91950798015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08420702526841517
the lambda is 200.0
the regulation term lambda/alpha is 2375.0987445820283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09836700331551822
the lambda is 200.0
the regulation term lambda/alpha is 2033.2021232616764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.445349074625713
the lambda is 200.0
the regulation term lambda/alpha is 26.86240738954933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10049915066499633
the lambda is 200.0
the regulation term lambda/alpha is 1990.0665694845482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 296.81437270340575
the lambda is 200.0
the regulation term lambda/alpha is 0.6738218172468746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08847363265070457
the lambda is 200.0
the regulation term lambda/alpha is 2260.5605083449377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06382396138092251
the lambda is 200.0
the regulation term lambda/alpha is 3133.619344094514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.5649163041392
the lambda is 200.0
the regulation term lambda/alpha is 23.351074651289384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.35432326625186
the lambda is 200.0
the regulation term lambda/alpha is 23.939700874147444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18069322600886795
the lambda is 200.0
the regulation term lambda/alpha is 1106.848355179538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.5905761878388605
the lambda is 200.0
the regulation term lambda/alpha is 55.70136644848036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 435.0307040264031
the lambda is 200.0
the regulation term lambda/alpha is 0.45973766483356426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.4686969
the lambda is 200.0
the regulation term lambda/alpha is 3.999999996250425e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06043722406245329
the lambda is 200.0
the regulation term lambda/alpha is 3309.2188316479987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12506176739272318
the lambda is 200.0
the regulation term lambda/alpha is 1599.209767857776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21085638038336332
the lambda is 200.0
the regulation term lambda/alpha is 948.5129149821074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26528424425505603
the lambda is 200.0
the regulation term lambda/alpha is 753.9083241133278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09847378705758857
the lambda is 200.0
the regulation term lambda/alpha is 2030.9973443291844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2823321006880472
the lambda is 200.0
the regulation term lambda/alpha is 708.3856193206414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.493394826204691
the lambda is 200.0
the regulation term lambda/alpha is 80.21192548330944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4244080189074784
the lambda is 200.0
the regulation term lambda/alpha is 140.40920673375604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07559930309131177
the lambda is 200.0
the regulation term lambda/alpha is 2645.527032946749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2807692260145009
the lambda is 200.0
the regulation term lambda/alpha is 712.3287791863294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 166.9046726961732
the lambda is 200.0
the regulation term lambda/alpha is 1.1982888002427126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 11709.881889607188
the lambda is 200.0
the regulation term lambda/alpha is 0.017079591569365442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 38753.14377987018
the lambda is 200.0
the regulation term lambda/alpha is 0.005160871622082114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.369937387931044
the lambda is 200.0
the regulation term lambda/alpha is 31.39748286677587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 26.981595072564478
the lambda is 200.0
the regulation term lambda/alpha is 7.412460214532117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9944206804178155
the lambda is 200.0
the regulation term lambda/alpha is 100.27974637632697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10268997381119721
the lambda is 200.0
the regulation term lambda/alpha is 1947.609806267106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18914001873996772
the lambda is 200.0
the regulation term lambda/alpha is 1057.417680998344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1450119107694495
the lambda is 200.0
the regulation term lambda/alpha is 1379.1970531163786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 13207794.14690742
the lambda is 200.0
the regulation term lambda/alpha is 1.5142573981350974e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05927148611817002
the lambda is 200.0
the regulation term lambda/alpha is 3374.3037858247462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05341025363400961
the lambda is 200.0
the regulation term lambda/alpha is 3744.599330504726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 123.11131166856684
the lambda is 200.0
the regulation term lambda/alpha is 1.6245460899517377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15241204832692196
the lambda is 200.0
the regulation term lambda/alpha is 1312.23221651744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 7709744.971044308
the lambda is 200.0
the regulation term lambda/alpha is 2.5941195299085153e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21196882130822478
the lambda is 200.0
the regulation term lambda/alpha is 943.5349914465918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0810134528524132
the lambda is 200.0
the regulation term lambda/alpha is 2468.7257851402946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 360.50171677872373
the lambda is 200.0
the regulation term lambda/alpha is 0.5547823788111395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07106361988057083
the lambda is 200.0
the regulation term lambda/alpha is 2814.3795705329817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 10177.359029637002
the lambda is 200.0
the regulation term lambda/alpha is 0.019651463549393268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.243814819476883
the lambda is 200.0
the regulation term lambda/alpha is 24.260612881245084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06549049944693495
the lambda is 200.0
the regulation term lambda/alpha is 3053.878069170234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499968932.30960983
the lambda is 200.0
the regulation term lambda/alpha is 4.000248556967303e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 78.20993920764599
the lambda is 200.0
the regulation term lambda/alpha is 2.5572197348089425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.248662840050415
the lambda is 200.0
the regulation term lambda/alpha is 804.3019212659644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 18.01190866514428
the lambda is 200.0
the regulation term lambda/alpha is 11.103764943413783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07921808476332656
the lambda is 200.0
the regulation term lambda/alpha is 2524.6760332255412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 17864419.13540348
the lambda is 200.0
the regulation term lambda/alpha is 1.1195438177088138e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2887169610074328
the lambda is 200.0
the regulation term lambda/alpha is 692.7199541798001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1957806446578034
the lambda is 200.0
the regulation term lambda/alpha is 1021.5514426851104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 12919.416659621904
the lambda is 200.0
the regulation term lambda/alpha is 0.015480575111806415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0652308816459801
the lambda is 200.0
the regulation term lambda/alpha is 3066.03245201309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06627864229354412
the lambda is 200.0
the regulation term lambda/alpha is 3017.5633217441605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06551841356747784
the lambda is 200.0
the regulation term lambda/alpha is 3052.5769643982403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2871170899505453
the lambda is 200.0
the regulation term lambda/alpha is 696.5799215729344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08196842129749565
the lambda is 200.0
the regulation term lambda/alpha is 2439.9640353462623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08248898707280174
the lambda is 200.0
the regulation term lambda/alpha is 2424.5660796329985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  23  iterations
the alpha is 209779636.73529422
the lambda is 200.0
the regulation term lambda/alpha is 9.533813820660084e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.542401234726998
the lambda is 200.0
the regulation term lambda/alpha is 368.7307240380163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0990844428970081
the lambda is 200.0
the regulation term lambda/alpha is 181.96963963281337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 110.66073733137291
the lambda is 200.0
the regulation term lambda/alpha is 1.8073257491598054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3043601102353374
the lambda is 200.0
the regulation term lambda/alpha is 657.1163344807437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.5919062153357157
the lambda is 200.0
the regulation term lambda/alpha is 55.68074109120555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06601976473089313
the lambda is 200.0
the regulation term lambda/alpha is 3029.3958304036864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1238544559691492
the lambda is 200.0
the regulation term lambda/alpha is 177.95898653756834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999221.98070645
the lambda is 200.0
the regulation term lambda/alpha is 4.000006224164033e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18821560821312372
the lambda is 200.0
the regulation term lambda/alpha is 1062.6111293253234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 41.512719201547554
the lambda is 200.0
the regulation term lambda/alpha is 4.817800516246216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12789793514725561
the lambda is 200.0
the regulation term lambda/alpha is 1563.7469031046473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07583421810210077
the lambda is 200.0
the regulation term lambda/alpha is 2637.3318668721076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2123776846853083
the lambda is 200.0
the regulation term lambda/alpha is 941.7185251659138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0420250914302875
the lambda is 200.0
the regulation term lambda/alpha is 191.9339578718582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 498821017.59202605
the lambda is 200.0
the regulation term lambda/alpha is 4.0094541518211504e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999995.2189816
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000382481474e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 63.30232939628867
the lambda is 200.0
the regulation term lambda/alpha is 3.159441396665661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07993225548224756
the lambda is 200.0
the regulation term lambda/alpha is 2502.1188104021253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 467019905.40796894
the lambda is 200.0
the regulation term lambda/alpha is 4.2824727101361647e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054094824713520374
the lambda is 200.0
the regulation term lambda/alpha is 3697.2113517175762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09790338290118733
the lambda is 200.0
the regulation term lambda/alpha is 2042.8303299984793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29302351892714895
the lambda is 200.0
the regulation term lambda/alpha is 682.5390696701164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15646362475955738
the lambda is 200.0
the regulation term lambda/alpha is 1278.2523753194798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 132684.76009149308
the lambda is 200.0
the regulation term lambda/alpha is 0.0015073321145705773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7422156911164014
the lambda is 200.0
the regulation term lambda/alpha is 269.4634489593862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15809433208427737
the lambda is 200.0
the regulation term lambda/alpha is 1265.0674908027913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.9854555442876811
the lambda is 200.0
the regulation term lambda/alpha is 100.73255005654318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3382545437255063
the lambda is 200.0
the regulation term lambda/alpha is 591.270697496676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999997.46502787
the lambda is 200.0
the regulation term lambda/alpha is 4.000000020279777e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08716407144320275
the lambda is 200.0
the regulation term lambda/alpha is 2294.5233820373182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0967646595728819
the lambda is 200.0
the regulation term lambda/alpha is 2066.870290070752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 497533152.98285604
the lambda is 200.0
the regulation term lambda/alpha is 4.0198326242370343e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14730349025763265
the lambda is 200.0
the regulation term lambda/alpha is 1357.7410803382973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.760428237650277
the lambda is 200.0
the regulation term lambda/alpha is 18.58662086516302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.02003179036534
the lambda is 200.0
the regulation term lambda/alpha is 66.22446844369328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4321911337008314
the lambda is 200.0
the regulation term lambda/alpha is 462.7582206219962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1827785439410579
the lambda is 200.0
the regulation term lambda/alpha is 1094.220337286939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.98545945
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999921163243e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1399.845187362719
the lambda is 200.0
the regulation term lambda/alpha is 0.14287294181208432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18815830131633843
the lambda is 200.0
the regulation term lambda/alpha is 1062.9347661028937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5196475264433189
the lambda is 200.0
the regulation term lambda/alpha is 384.87626674350236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999986
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000011e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11243626655233906
the lambda is 200.0
the regulation term lambda/alpha is 1778.7854945085717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4177611272240293
the lambda is 200.0
the regulation term lambda/alpha is 478.74248456043557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09546047841011926
the lambda is 200.0
the regulation term lambda/alpha is 2095.1078742844334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.070534941731804
the lambda is 200.0
the regulation term lambda/alpha is 2835.4740939669705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15331884242103463
the lambda is 200.0
the regulation term lambda/alpha is 1304.4711063678167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33246536485155515
the lambda is 200.0
the regulation term lambda/alpha is 601.5664220821902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 21.335115261152573
the lambda is 200.0
the regulation term lambda/alpha is 9.374216991654327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.058968562127647714
the lambda is 200.0
the regulation term lambda/alpha is 3391.6377266765503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.131297788564948
the lambda is 200.0
the regulation term lambda/alpha is 176.78811186725656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.56114633348782
the lambda is 200.0
the regulation term lambda/alpha is 20.917993828784105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06729932206958499
the lambda is 200.0
the regulation term lambda/alpha is 2971.7981377762985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 26.722345187252447
the lambda is 200.0
the regulation term lambda/alpha is 7.484373044301794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.200548458866676
the lambda is 200.0
the regulation term lambda/alpha is 14.083963065181617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07729448098614898
the lambda is 200.0
the regulation term lambda/alpha is 2587.506862693594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 23.605552051676842
the lambda is 200.0
the regulation term lambda/alpha is 8.472583041572747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1765789622467204
the lambda is 200.0
the regulation term lambda/alpha is 169.9843413977866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06091341736347261
the lambda is 200.0
the regulation term lambda/alpha is 3283.348868880441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.065326815877485
the lambda is 200.0
the regulation term lambda/alpha is 39.48412555989307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2512953642395924
the lambda is 200.0
the regulation term lambda/alpha is 795.8762017166146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05913382078384944
the lambda is 200.0
the regulation term lambda/alpha is 3382.159267723552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 28.70716866327778
the lambda is 200.0
the regulation term lambda/alpha is 6.966900927984586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 1656542.4803156466
the lambda is 200.0
the regulation term lambda/alpha is 0.00012073339644262604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2790324603526576
the lambda is 200.0
the regulation term lambda/alpha is 716.7624861538627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4842683174727494
the lambda is 200.0
the regulation term lambda/alpha is 412.99418686677626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3408837586810165
the lambda is 200.0
the regulation term lambda/alpha is 149.1553601907547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0676017381026077
the lambda is 200.0
the regulation term lambda/alpha is 187.3357759378038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08698773837086493
the lambda is 200.0
the regulation term lambda/alpha is 2299.1746163961266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15470248081878554
the lambda is 200.0
the regulation term lambda/alpha is 1292.8040904158142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29776104468471243
the lambda is 200.0
the regulation term lambda/alpha is 671.6795348826513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.100860765766751
the lambda is 200.0
the regulation term lambda/alpha is 64.49822004521572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05454867507477765
the lambda is 200.0
the regulation term lambda/alpha is 3666.450188310376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1123918237324322
the lambda is 200.0
the regulation term lambda/alpha is 1779.4888752417962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09962294260836967
the lambda is 200.0
the regulation term lambda/alpha is 2007.569689907928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1451272087745891
the lambda is 200.0
the regulation term lambda/alpha is 1378.1013339176052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.884386739576789
the lambda is 200.0
the regulation term lambda/alpha is 106.13532551439926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12098834186787084
the lambda is 200.0
the regulation term lambda/alpha is 1653.0518305508836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05816260270489504
the lambda is 200.0
the regulation term lambda/alpha is 3438.6356644794328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07376037823381276
the lambda is 200.0
the regulation term lambda/alpha is 2711.482841994393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1760120902756241
the lambda is 200.0
the regulation term lambda/alpha is 1136.28557951225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06010474387278575
the lambda is 200.0
the regulation term lambda/alpha is 3327.524370177977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.276241300729158
the lambda is 200.0
the regulation term lambda/alpha is 21.56045681824588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056419765721047545
the lambda is 200.0
the regulation term lambda/alpha is 3544.8569742179816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08798899245990506
the lambda is 200.0
the regulation term lambda/alpha is 2273.011593934733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07143596583013428
the lambda is 200.0
the regulation term lambda/alpha is 2799.7101694624635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08298271578051723
the lambda is 200.0
the regulation term lambda/alpha is 2410.140450560624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06094284346591052
the lambda is 200.0
the regulation term lambda/alpha is 3281.76351193514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26057174437830677
the lambda is 200.0
the regulation term lambda/alpha is 767.5429294038624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4893391701558527
the lambda is 200.0
the regulation term lambda/alpha is 408.71447085730074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054398995548517605
the lambda is 200.0
the regulation term lambda/alpha is 3676.538472509537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.9746943520704074
the lambda is 200.0
the regulation term lambda/alpha is 67.23379827604764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07139011297732126
the lambda is 200.0
the regulation term lambda/alpha is 2801.5083834302754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 86.85273814263066
the lambda is 200.0
the regulation term lambda/alpha is 2.30274835632191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06778664318146431
the lambda is 200.0
the regulation term lambda/alpha is 2950.433752333798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 4195594.558119824
the lambda is 200.0
the regulation term lambda/alpha is 4.766904838622591e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 60196.07153338317
the lambda is 200.0
the regulation term lambda/alpha is 0.003322475950761757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.132125095851611
the lambda is 200.0
the regulation term lambda/alpha is 63.85440998665505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 164.0089186759466
the lambda is 200.0
the regulation term lambda/alpha is 1.219445879008358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06587711702574751
the lambda is 200.0
the regulation term lambda/alpha is 3035.9555643856074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 533533.9718841653
the lambda is 200.0
the regulation term lambda/alpha is 0.00037485897907063673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05611803585751725
the lambda is 200.0
the regulation term lambda/alpha is 3563.916607983156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10663083929911926
the lambda is 200.0
the regulation term lambda/alpha is 1875.629989547048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1655.2451180455946
the lambda is 200.0
the regulation term lambda/alpha is 0.12082802590358759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499980663.0383617
the lambda is 200.0
the regulation term lambda/alpha is 4.000154701676027e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05803230437182749
the lambda is 200.0
the regulation term lambda/alpha is 3446.356338334421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 25.651086975249587
the lambda is 200.0
the regulation term lambda/alpha is 7.796940542635776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.7907902503195237
the lambda is 200.0
the regulation term lambda/alpha is 52.75944771229221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 121.87029903592288
the lambda is 200.0
the regulation term lambda/alpha is 1.6410889411295146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9512799724817278
the lambda is 200.0
the regulation term lambda/alpha is 210.24304703717664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.587295661254574
the lambda is 200.0
the regulation term lambda/alpha is 35.7954925111466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25108989432980694
the lambda is 200.0
the regulation term lambda/alpha is 796.5274768776625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4904587025558942
the lambda is 200.0
the regulation term lambda/alpha is 134.18687794370453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09135527403773956
the lambda is 200.0
the regulation term lambda/alpha is 2189.2551043892495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 104.13605066226404
the lambda is 200.0
the regulation term lambda/alpha is 1.9205644801015518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18554254806134357
the lambda is 200.0
the regulation term lambda/alpha is 1077.9198738495095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05809052377797467
the lambda is 200.0
the regulation term lambda/alpha is 3442.902335747764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.19322524495313
the lambda is 200.0
the regulation term lambda/alpha is 38.51171296572657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.2847261864509445
the lambda is 200.0
the regulation term lambda/alpha is 37.8449124786754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 69.33160411597582
the lambda is 200.0
the regulation term lambda/alpha is 2.8846873305490814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.196576710426371
the lambda is 200.0
the regulation term lambda/alpha is 91.05076961376805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05759682891925141
the lambda is 200.0
the regulation term lambda/alpha is 3472.413390681499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08099855704973313
the lambda is 200.0
the regulation term lambda/alpha is 2469.1797889337704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18927117812054267
the lambda is 200.0
the regulation term lambda/alpha is 1056.6849215289628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06135948158906595
the lambda is 200.0
the regulation term lambda/alpha is 3259.479950294093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9318224829609858
the lambda is 200.0
the regulation term lambda/alpha is 214.63315562474332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.29861937501594
the lambda is 200.0
the regulation term lambda/alpha is 87.00875063258921
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6975676398592643
the lambda is 200.0
the regulation term lambda/alpha is 117.81562943587971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061928147731438676
the lambda is 200.0
the regulation term lambda/alpha is 3229.5492005885917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3898481683598608
the lambda is 200.0
the regulation term lambda/alpha is 513.020237702859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06872868138610715
the lambda is 200.0
the regulation term lambda/alpha is 2909.9932657871145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10807108622038969
the lambda is 200.0
the regulation term lambda/alpha is 1850.6337540842276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.71908289754114
the lambda is 200.0
the regulation term lambda/alpha is 53.776698586694415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29154150020362324
the lambda is 200.0
the regulation term lambda/alpha is 686.0086809607301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.22359379502143
the lambda is 200.0
the regulation term lambda/alpha is 19.562592568710404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 5489.638444158277
the lambda is 200.0
the regulation term lambda/alpha is 0.036432271821621925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3770804756754274
the lambda is 200.0
the regulation term lambda/alpha is 530.3907598020278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054329027579676635
the lambda is 200.0
the regulation term lambda/alpha is 3681.273324958532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 54.10398637238319
the lambda is 200.0
the regulation term lambda/alpha is 3.696585287144163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 26398.328674798333
the lambda is 200.0
the regulation term lambda/alpha is 0.007576237210461502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 19.403286009131204
the lambda is 200.0
the regulation term lambda/alpha is 10.30753244094221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.575207766757025
the lambda is 200.0
the regulation term lambda/alpha is 18.91215798413875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7643784392590492
the lambda is 200.0
the regulation term lambda/alpha is 261.650498925467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.118474144939957
the lambda is 200.0
the regulation term lambda/alpha is 178.8150409241124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.765367006387008
the lambda is 200.0
the regulation term lambda/alpha is 29.562328224202055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.44416432321876387
the lambda is 200.0
the regulation term lambda/alpha is 450.28380161342716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2270063243208395
the lambda is 200.0
the regulation term lambda/alpha is 881.0327227594324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08428835847195006
the lambda is 200.0
the regulation term lambda/alpha is 2372.8069169428313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0751834709630073
the lambda is 200.0
the regulation term lambda/alpha is 186.01476436469622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.96571237
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992274301e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4448026293521385
the lambda is 200.0
the regulation term lambda/alpha is 449.6376298209004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999997.6412779
the lambda is 200.0
the regulation term lambda/alpha is 4.000000018869777e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10363973814382021
the lambda is 200.0
the regulation term lambda/alpha is 1929.7617263608024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 426777.0487631871
the lambda is 200.0
the regulation term lambda/alpha is 0.00046862876197210256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999844
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000125e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09006140696095513
the lambda is 200.0
the regulation term lambda/alpha is 2220.707034775808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09685610577706207
the lambda is 200.0
the regulation term lambda/alpha is 2064.91886490201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 46072826.08381816
the lambda is 200.0
the regulation term lambda/alpha is 4.340953594558086e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05357843461176686
the lambda is 200.0
the regulation term lambda/alpha is 3732.8451540104556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5690292869333633
the lambda is 200.0
the regulation term lambda/alpha is 127.46734663627346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08316940754984833
the lambda is 200.0
the regulation term lambda/alpha is 2404.7303677151745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09356640749553063
the lambda is 200.0
the regulation term lambda/alpha is 2137.5192801920216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16748607826741554
the lambda is 200.0
the regulation term lambda/alpha is 1194.129100573191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056899768146721055
the lambda is 200.0
the regulation term lambda/alpha is 3514.952811130661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06628558596635299
the lambda is 200.0
the regulation term lambda/alpha is 3017.2472202557183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 28.579913963482532
the lambda is 200.0
the regulation term lambda/alpha is 6.997921696179575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06853908266946564
the lambda is 200.0
the regulation term lambda/alpha is 2918.0431399193585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999996.9172275
the lambda is 200.0
the regulation term lambda/alpha is 4.00000002466218e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1826669149654398
the lambda is 200.0
the regulation term lambda/alpha is 1094.8890226664178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20595048591256296
the lambda is 200.0
the regulation term lambda/alpha is 971.1072013926238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 498715467.79188937
the lambda is 200.0
the regulation term lambda/alpha is 4.0103027260317234e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 576.0614201988321
the lambda is 200.0
the regulation term lambda/alpha is 0.3471852010693034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06614824259398473
the lambda is 200.0
the regulation term lambda/alpha is 3023.5119204540624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13218024004643006
the lambda is 200.0
the regulation term lambda/alpha is 1513.0854651931888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07213369199212716
the lambda is 200.0
the regulation term lambda/alpha is 2772.6294672651507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 2240772.195029718
the lambda is 200.0
the regulation term lambda/alpha is 8.925494543515948e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.649243182045225
the lambda is 200.0
the regulation term lambda/alpha is 30.078611132775936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499990435.3197374
the lambda is 200.0
the regulation term lambda/alpha is 4.000076518905859e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10317109264548205
the lambda is 200.0
the regulation term lambda/alpha is 1938.5274971085437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054293060127377085
the lambda is 200.0
the regulation term lambda/alpha is 3683.712053267572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08254702464066238
the lambda is 200.0
the regulation term lambda/alpha is 2422.8614037952943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07660597820549543
the lambda is 200.0
the regulation term lambda/alpha is 2610.7623019120033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4036461413694166
the lambda is 200.0
the regulation term lambda/alpha is 142.48605407405404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08180632363863455
the lambda is 200.0
the regulation term lambda/alpha is 2444.7987772126985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1600124947453983
the lambda is 200.0
the regulation term lambda/alpha is 1249.902392423962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11144335505661944
the lambda is 200.0
the regulation term lambda/alpha is 1794.633694385716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10238300594468784
the lambda is 200.0
the regulation term lambda/alpha is 1953.4491896833883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06211709351225041
the lambda is 200.0
the regulation term lambda/alpha is 3219.7256615130755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09433752908282128
the lambda is 200.0
the regulation term lambda/alpha is 2120.047047494905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.067189495193299
the lambda is 200.0
the regulation term lambda/alpha is 2976.655791573004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 35.218496551758264
the lambda is 200.0
the regulation term lambda/alpha is 5.678834123599609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05462580004625644
the lambda is 200.0
the regulation term lambda/alpha is 3661.273607537876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06045411042113936
the lambda is 200.0
the regulation term lambda/alpha is 3308.2944833154766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9074001849892152
the lambda is 200.0
the regulation term lambda/alpha is 220.40991759592498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24550335500959466
the lambda is 200.0
the regulation term lambda/alpha is 814.652818052868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 257.425124800478
the lambda is 200.0
the regulation term lambda/alpha is 0.7769249413980613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.449939401859075
the lambda is 200.0
the regulation term lambda/alpha is 444.50430252081316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06453104420744266
the lambda is 200.0
the regulation term lambda/alpha is 3099.283491478557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 335.06562656396335
the lambda is 200.0
the regulation term lambda/alpha is 0.596897992942348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8710874735861529
the lambda is 200.0
the regulation term lambda/alpha is 229.59806685845936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09184030625574062
the lambda is 200.0
the regulation term lambda/alpha is 2177.6930865526015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05467807502400262
the lambda is 200.0
the regulation term lambda/alpha is 3657.773246629547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06568222475342476
the lambda is 200.0
the regulation term lambda/alpha is 3044.963850582295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17559186265759796
the lambda is 200.0
the regulation term lambda/alpha is 1139.004945747387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999996.44851613
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000284118714e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1900138021092624
the lambda is 200.0
the regulation term lambda/alpha is 1052.5551185223655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0756444891211406
the lambda is 200.0
the regulation term lambda/alpha is 2643.946734569265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06179911121164424
the lambda is 200.0
the regulation term lambda/alpha is 3236.292498043497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07327830218248807
the lambda is 200.0
the regulation term lambda/alpha is 2729.3208773032366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6044613800016209
the lambda is 200.0
the regulation term lambda/alpha is 330.8730824117559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06098673062682116
the lambda is 200.0
the regulation term lambda/alpha is 3279.401895205752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 847.644129197544
the lambda is 200.0
the regulation term lambda/alpha is 0.23594807432847786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12164776383345041
the lambda is 200.0
the regulation term lambda/alpha is 1644.0910518817484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999997.3958769
the lambda is 200.0
the regulation term lambda/alpha is 4.000000020832985e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10265305329189041
the lambda is 200.0
the regulation term lambda/alpha is 1948.3102897222834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.393020703563143
the lambda is 200.0
the regulation term lambda/alpha is 143.57288408451453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2355937730562147
the lambda is 200.0
the regulation term lambda/alpha is 848.9188716896956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.152176027466481
the lambda is 200.0
the regulation term lambda/alpha is 27.963517568910575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08056736796845373
the lambda is 200.0
the regulation term lambda/alpha is 2482.3946101641336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0712119439685845
the lambda is 200.0
the regulation term lambda/alpha is 2808.517628562857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22243230121545676
the lambda is 200.0
the regulation term lambda/alpha is 899.1499836450105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4426118808438287
the lambda is 200.0
the regulation term lambda/alpha is 451.86315292464565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 12.210748569088077
the lambda is 200.0
the regulation term lambda/alpha is 16.379012217670812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35276894570941275
the lambda is 200.0
the regulation term lambda/alpha is 566.9433277291548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08709932190189519
the lambda is 200.0
the regulation term lambda/alpha is 2296.229128227555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06785055319911133
the lambda is 200.0
the regulation term lambda/alpha is 2947.654670008195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0527916577030776
the lambda is 200.0
the regulation term lambda/alpha is 189.97111017800893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 138529.6540804613
the lambda is 200.0
the regulation term lambda/alpha is 0.0014437342049799335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 61.150525069426884
the lambda is 200.0
the regulation term lambda/alpha is 3.2706178691504477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07776743541806184
the lambda is 200.0
the regulation term lambda/alpha is 2571.770547978609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05745622220783741
the lambda is 200.0
the regulation term lambda/alpha is 3480.9110713289933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 929.5655160248353
the lambda is 200.0
the regulation term lambda/alpha is 0.21515428073889153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06428510306768337
the lambda is 200.0
the regulation term lambda/alpha is 3111.1406913266906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999996.74905545
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000260075567e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08744455769032362
the lambda is 200.0
the regulation term lambda/alpha is 2287.163492876029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 498773468.99926
the lambda is 200.0
the regulation term lambda/alpha is 4.009836377249182e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3965716172935871
the lambda is 200.0
the regulation term lambda/alpha is 143.2078366217835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 14.459427948627305
the lambda is 200.0
the regulation term lambda/alpha is 13.8318058439502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0752213789078126
the lambda is 200.0
the regulation term lambda/alpha is 2658.818581950081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 2815.3700269556525
the lambda is 200.0
the regulation term lambda/alpha is 0.07103861946568574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07731314738200594
the lambda is 200.0
the regulation term lambda/alpha is 2586.882138063733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1668147875906427
the lambda is 200.0
the regulation term lambda/alpha is 1198.9344763054976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 354111130.08030427
the lambda is 200.0
the regulation term lambda/alpha is 5.647944473099295e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.243944158003484
the lambda is 200.0
the regulation term lambda/alpha is 61.653342430867205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.062248120754902554
the lambda is 200.0
the regulation term lambda/alpha is 3212.9484002816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06629344022222321
the lambda is 200.0
the regulation term lambda/alpha is 3016.8897454948346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 432293831.78776264
the lambda is 200.0
the regulation term lambda/alpha is 4.6264828524824117e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07239749778793735
the lambda is 200.0
the regulation term lambda/alpha is 2762.5264147364414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  23  iterations
the alpha is 345761.2020870732
the lambda is 200.0
the regulation term lambda/alpha is 0.0005784338982880847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.42764470046259717
the lambda is 200.0
the regulation term lambda/alpha is 467.67795738764795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.194826739625619
the lambda is 200.0
the regulation term lambda/alpha is 47.67777369938517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1451134007618848
the lambda is 200.0
the regulation term lambda/alpha is 1378.2324647478843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.0015666572068445
the lambda is 200.0
the regulation term lambda/alpha is 66.63187023343109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 157143.95466385136
the lambda is 200.0
the regulation term lambda/alpha is 0.0012727183837763442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06456177958615457
the lambda is 200.0
the regulation term lambda/alpha is 3097.8080418788595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.771435132498977
the lambda is 200.0
the regulation term lambda/alpha is 22.801285876125508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07808297474541367
the lambda is 200.0
the regulation term lambda/alpha is 2561.3778247062405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07613623455336183
the lambda is 200.0
the regulation term lambda/alpha is 2626.8701252860806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05703127054053457
the lambda is 200.0
the regulation term lambda/alpha is 3506.848052032287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23364265173137572
the lambda is 200.0
the regulation term lambda/alpha is 856.0080897812467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1660489618879242
the lambda is 200.0
the regulation term lambda/alpha is 1204.4640190824637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.055883618740199925
the lambda is 200.0
the regulation term lambda/alpha is 3578.8663030178795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.538736309071963
the lambda is 200.0
the regulation term lambda/alpha is 78.77935147707805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 570.9294875300625
the lambda is 200.0
the regulation term lambda/alpha is 0.35030595610893006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99999994
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000001e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 33687.91707674805
the lambda is 200.0
the regulation term lambda/alpha is 0.0059368467199785195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10873538572782926
the lambda is 200.0
the regulation term lambda/alpha is 1839.3276361810235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07479707588063185
the lambda is 200.0
the regulation term lambda/alpha is 2673.9013209443997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 113594.02849398184
the lambda is 200.0
the regulation term lambda/alpha is 0.0017606559310518327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1438342891872626
the lambda is 200.0
the regulation term lambda/alpha is 1390.48902129042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16497289773172366
the lambda is 200.0
the regulation term lambda/alpha is 1212.3203432192654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08018586254249632
the lambda is 200.0
the regulation term lambda/alpha is 2494.205258364658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499773521.8947197
the lambda is 200.0
the regulation term lambda/alpha is 4.001812645891456e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.140344586486446
the lambda is 200.0
the regulation term lambda/alpha is 19.723195626559917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39505657684181467
the lambda is 200.0
the regulation term lambda/alpha is 506.2566015198435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35534487203655435
the lambda is 200.0
the regulation term lambda/alpha is 562.8335055287529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05699157810120079
the lambda is 200.0
the regulation term lambda/alpha is 3509.2904366476223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06113399046648921
the lambda is 200.0
the regulation term lambda/alpha is 3271.5024567164587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05759744677650709
the lambda is 200.0
the regulation term lambda/alpha is 3472.376141533694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10596548322944026
the lambda is 200.0
the regulation term lambda/alpha is 1887.4070490194702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.314288821528084
the lambda is 200.0
the regulation term lambda/alpha is 12.25919206089346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3968540632736585
the lambda is 200.0
the regulation term lambda/alpha is 503.963593947345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 96.78828676963266
the lambda is 200.0
the regulation term lambda/alpha is 2.066365741921057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7588932070420288
the lambda is 200.0
the regulation term lambda/alpha is 263.5416922224785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 216.45039751066406
the lambda is 200.0
the regulation term lambda/alpha is 0.923999227075323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.055336591354245665
the lambda is 200.0
the regulation term lambda/alpha is 3614.2450249540916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.6883860459260288
the lambda is 200.0
the regulation term lambda/alpha is 290.5346515717885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10325276947362563
the lambda is 200.0
the regulation term lambda/alpha is 1936.9940488723355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06854023227943179
the lambda is 200.0
the regulation term lambda/alpha is 2917.9941962352805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.137594330802619
the lambda is 200.0
the regulation term lambda/alpha is 24.57728806202039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05224727119995581
the lambda is 200.0
the regulation term lambda/alpha is 3827.951114127644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06573915098045818
the lambda is 200.0
the regulation term lambda/alpha is 3042.327091499137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06116483057977026
the lambda is 200.0
the regulation term lambda/alpha is 3269.8529220834344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05929780964432758
the lambda is 200.0
the regulation term lambda/alpha is 3372.8058624696937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4760971348859409
the lambda is 200.0
the regulation term lambda/alpha is 420.08234317124004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 32.530884647007056
the lambda is 200.0
the regulation term lambda/alpha is 6.1480037253890245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08186370299075484
the lambda is 200.0
the regulation term lambda/alpha is 2443.0851854158946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.155689146348406
the lambda is 200.0
the regulation term lambda/alpha is 1284.6110643604777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0625652377742281
the lambda is 200.0
the regulation term lambda/alpha is 3196.6633088124236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.681021360012553
the lambda is 200.0
the regulation term lambda/alpha is 293.6765448829879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.623783433181452
the lambda is 200.0
the regulation term lambda/alpha is 26.23369377591813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.523408781539995
the lambda is 200.0
the regulation term lambda/alpha is 56.76321210523434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24350898520877753
the lambda is 200.0
the regulation term lambda/alpha is 821.324929051492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0980308955599985
the lambda is 200.0
the regulation term lambda/alpha is 2040.173139881117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.4612366738825392
the lambda is 200.0
the regulation term lambda/alpha is 433.61686380327376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4383544522707137
the lambda is 200.0
the regulation term lambda/alpha is 456.2517820087896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.185230532527922
the lambda is 200.0
the regulation term lambda/alpha is 91.52352441672855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19181252197260895
the lambda is 200.0
the regulation term lambda/alpha is 1042.6847942104646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 454401793.1971918
the lambda is 200.0
the regulation term lambda/alpha is 4.401391081509403e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5363495260399822
the lambda is 200.0
the regulation term lambda/alpha is 372.8911657229487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.677649605148566
the lambda is 200.0
the regulation term lambda/alpha is 54.382559915443764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7813287096730317
the lambda is 200.0
the regulation term lambda/alpha is 255.9742110125397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06026749409661384
the lambda is 200.0
the regulation term lambda/alpha is 3318.538508990987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 88135.05695961321
the lambda is 200.0
the regulation term lambda/alpha is 0.0022692445764418974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.791824030614796
the lambda is 200.0
the regulation term lambda/alpha is 15.634986810429698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7276981178262981
the lambda is 200.0
the regulation term lambda/alpha is 274.83924322549933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13860736928110653
the lambda is 200.0
the regulation term lambda/alpha is 1442.9247235360513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24942022945583467
the lambda is 200.0
the regulation term lambda/alpha is 801.8595782561189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05965890999300609
the lambda is 200.0
the regulation term lambda/alpha is 3352.39111850093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.22683185332308028
the lambda is 200.0
the regulation term lambda/alpha is 881.7103818092812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 12193402.548326505
the lambda is 200.0
the regulation term lambda/alpha is 1.6402312579063436e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.844095944045894
the lambda is 200.0
the regulation term lambda/alpha is 52.0278377312042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0805565908402262
the lambda is 200.0
the regulation term lambda/alpha is 2482.726713158389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.257985929045748
the lambda is 200.0
the regulation term lambda/alpha is 24.21898047761762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07741851688712365
the lambda is 200.0
the regulation term lambda/alpha is 2583.3612944510473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20683074701443088
the lambda is 200.0
the regulation term lambda/alpha is 966.9742187124901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06671576913278009
the lambda is 200.0
the regulation term lambda/alpha is 2997.792015287314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2304713501172846
the lambda is 200.0
the regulation term lambda/alpha is 89.66714591042984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.4600249156245059
the lambda is 200.0
the regulation term lambda/alpha is 434.75906023153203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07530898531665642
the lambda is 200.0
the regulation term lambda/alpha is 2655.725597138873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13906062654215018
the lambda is 200.0
the regulation term lambda/alpha is 1438.221622993901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08835597733181036
the lambda is 200.0
the regulation term lambda/alpha is 2263.570683496871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14398006779927855
the lambda is 200.0
the regulation term lambda/alpha is 1389.0811628094132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0296547164617937
the lambda is 200.0
the regulation term lambda/alpha is 194.23987167976148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08245884194466017
the lambda is 200.0
the regulation term lambda/alpha is 2425.4524473460847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  32  iterations
the alpha is 3964251.310882483
the lambda is 200.0
the regulation term lambda/alpha is 5.0450888280207934e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05906002451388676
the lambda is 200.0
the regulation term lambda/alpha is 3386.3853197855356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05869624409441929
the lambda is 200.0
the regulation term lambda/alpha is 3407.373045510003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.21735838621788287
the lambda is 200.0
the regulation term lambda/alpha is 920.1393306238361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1458479055872424
the lambda is 200.0
the regulation term lambda/alpha is 1371.291546455326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0663485104034096
the lambda is 200.0
the regulation term lambda/alpha is 3014.3856852846866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.478011195912488
the lambda is 200.0
the regulation term lambda/alpha is 14.838984557354761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09396051673058993
the lambda is 200.0
the regulation term lambda/alpha is 2128.553641030453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23057467135355197
the lambda is 200.0
the regulation term lambda/alpha is 867.3979619093969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15283539430949286
the lambda is 200.0
the regulation term lambda/alpha is 1308.5974024773243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5519666231240543
the lambda is 200.0
the regulation term lambda/alpha is 362.3407496417588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17478203042495954
the lambda is 200.0
the regulation term lambda/alpha is 1144.2823928393914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06458729539110564
the lambda is 200.0
the regulation term lambda/alpha is 3096.5842243262928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16262611042391714
the lambda is 200.0
the regulation term lambda/alpha is 1229.814815583183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999984.34664553
the lambda is 200.0
the regulation term lambda/alpha is 4.0000001252268394e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09614231861993149
the lambda is 200.0
the regulation term lambda/alpha is 2080.249393512521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1430020651925017
the lambda is 200.0
the regulation term lambda/alpha is 1398.5812004237193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15909246589042106
the lambda is 200.0
the regulation term lambda/alpha is 1257.130555369951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05780327653947908
the lambda is 200.0
the regulation term lambda/alpha is 3460.011472937904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07912060007340237
the lambda is 200.0
the regulation term lambda/alpha is 2527.786692902411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16118688000526488
the lambda is 200.0
the regulation term lambda/alpha is 1240.795776886229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1562457691015005
the lambda is 200.0
the regulation term lambda/alpha is 172.97360591028732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17623977589884615
the lambda is 200.0
the regulation term lambda/alpha is 1134.8176027799261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 10.098661962889249
the lambda is 200.0
the regulation term lambda/alpha is 19.80460389059102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999994
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000005e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07810599698344116
the lambda is 200.0
the regulation term lambda/alpha is 2560.622842345908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31885218498482876
the lambda is 200.0
the regulation term lambda/alpha is 627.2498964042419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.022734892093146
the lambda is 200.0
the regulation term lambda/alpha is 14.262553028280662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08947696007740522
the lambda is 200.0
the regulation term lambda/alpha is 2235.2122806472516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 404222259.25090957
the lambda is 200.0
the regulation term lambda/alpha is 4.947773048684477e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21259070057875376
the lambda is 200.0
the regulation term lambda/alpha is 940.7749231529083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07584876904076306
the lambda is 200.0
the regulation term lambda/alpha is 2636.8259172738176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06815588106762961
the lambda is 200.0
the regulation term lambda/alpha is 2934.4496302754023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06839728936163811
the lambda is 200.0
the regulation term lambda/alpha is 2924.092487679398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2978107680303516
the lambda is 200.0
the regulation term lambda/alpha is 671.5673893283027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 9640.760086523145
the lambda is 200.0
the regulation term lambda/alpha is 0.02074525226279417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07348335277235768
the lambda is 200.0
the regulation term lambda/alpha is 2721.704882187061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2014.3665360692917
the lambda is 200.0
the regulation term lambda/alpha is 0.09928679632966274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 703.9194392877156
the lambda is 200.0
the regulation term lambda/alpha is 0.2841234221381593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06756750254126423
the lambda is 200.0
the regulation term lambda/alpha is 2960.002848675038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499064325.85234386
the lambda is 200.0
the regulation term lambda/alpha is 4.0074994272215963e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.063687117723205
the lambda is 200.0
the regulation term lambda/alpha is 3140.352510051309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07778075145218696
the lambda is 200.0
the regulation term lambda/alpha is 2571.330261870035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 6344.92935763736
the lambda is 200.0
the regulation term lambda/alpha is 0.031521233527881755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07730491168312538
the lambda is 200.0
the regulation term lambda/alpha is 2587.1577322254066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 653.8181796043201
the lambda is 200.0
the regulation term lambda/alpha is 0.3058954404128632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1408170890022747
the lambda is 200.0
the regulation term lambda/alpha is 1420.282164736194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08558599461607662
the lambda is 200.0
the regulation term lambda/alpha is 2336.830937084555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2763.4514099321113
the lambda is 200.0
the regulation term lambda/alpha is 0.07237326456371937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26322263940782054
the lambda is 200.0
the regulation term lambda/alpha is 759.8130633821836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06870691874715561
the lambda is 200.0
the regulation term lambda/alpha is 2910.9149943982866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 154879.81426443774
the lambda is 200.0
the regulation term lambda/alpha is 0.0012913238626340632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999954.1979111
the lambda is 200.0
the regulation term lambda/alpha is 4.000000366416745e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.831362361556154
the lambda is 200.0
the regulation term lambda/alpha is 20.343060569312904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1844574292988326
the lambda is 200.0
the regulation term lambda/alpha is 1084.2610176247629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14299569720106023
the lambda is 200.0
the regulation term lambda/alpha is 1398.6434830887843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17435561192159918
the lambda is 200.0
the regulation term lambda/alpha is 1147.0809444890829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.4504327579330732
the lambda is 200.0
the regulation term lambda/alpha is 444.01743984552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06478231317473997
the lambda is 200.0
the regulation term lambda/alpha is 3087.2624054119815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12218326653487455
the lambda is 200.0
the regulation term lambda/alpha is 1636.8853581346539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06278346868432932
the lambda is 200.0
the regulation term lambda/alpha is 3185.551932557045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.85400504
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999931679597e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05574185451786117
the lambda is 200.0
the regulation term lambda/alpha is 3587.9681745413527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08083432686944172
the lambda is 200.0
the regulation term lambda/alpha is 2474.1963933593065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 94396311.33962823
the lambda is 200.0
the regulation term lambda/alpha is 2.118726856607993e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11436159958711097
the lambda is 200.0
the regulation term lambda/alpha is 1748.8387773699944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09221300270184514
the lambda is 200.0
the regulation term lambda/alpha is 2168.8915244053546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19325677734118588
the lambda is 200.0
the regulation term lambda/alpha is 1034.8925546187147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06364551892748387
the lambda is 200.0
the regulation term lambda/alpha is 3142.405048623691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.17253517281061057
the lambda is 200.0
the regulation term lambda/alpha is 1159.183931844072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35945164175324085
the lambda is 200.0
the regulation term lambda/alpha is 556.4030783793097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11750646959850325
the lambda is 200.0
the regulation term lambda/alpha is 1702.033944882874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2423165648013507
the lambda is 200.0
the regulation term lambda/alpha is 825.3666032446379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07280859429401415
the lambda is 200.0
the regulation term lambda/alpha is 2746.9284627631205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10562257524276403
the lambda is 200.0
the regulation term lambda/alpha is 1893.5345927735423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05311418146402996
the lambda is 200.0
the regulation term lambda/alpha is 3765.472694621948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.571188601736793
the lambda is 200.0
the regulation term lambda/alpha is 350.14704318655356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 16.66716189955262
the lambda is 200.0
the regulation term lambda/alpha is 11.99964344291684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11496259161829661
the lambda is 200.0
the regulation term lambda/alpha is 1739.6963410850026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 236.1753659513298
the lambda is 200.0
the regulation term lambda/alpha is 0.8468283692263455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061772741229521054
the lambda is 200.0
the regulation term lambda/alpha is 3237.6740293406383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.062223915702376675
the lambda is 200.0
the regulation term lambda/alpha is 3214.198234592313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12879169435700993
the lambda is 200.0
the regulation term lambda/alpha is 1552.8951691993507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6274431139935327
the lambda is 200.0
the regulation term lambda/alpha is 318.7539962420585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0882517266558026
the lambda is 200.0
the regulation term lambda/alpha is 2266.2446116214305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0603395778615825
the lambda is 200.0
the regulation term lambda/alpha is 3314.574067103934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.508464069461425
the lambda is 200.0
the regulation term lambda/alpha is 44.36100563709089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05681244168286922
the lambda is 200.0
the regulation term lambda/alpha is 3520.3556487927967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 33.63439931173301
the lambda is 200.0
the regulation term lambda/alpha is 5.946293202573475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  35  iterations
the alpha is 170898162.26743373
the lambda is 200.0
the regulation term lambda/alpha is 1.170287599038225e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13543982168027766
the lambda is 200.0
the regulation term lambda/alpha is 1476.6705797363243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08161353079229818
the lambda is 200.0
the regulation term lambda/alpha is 2450.574041564121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11408271839980992
the lambda is 200.0
the regulation term lambda/alpha is 1753.1139054653981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5681124015997729
the lambda is 200.0
the regulation term lambda/alpha is 352.04301021560366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.675323211912492
the lambda is 200.0
the regulation term lambda/alpha is 29.961096062448135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 145.81582073110306
the lambda is 200.0
the regulation term lambda/alpha is 1.371593281148945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.8272911997513274
the lambda is 200.0
the regulation term lambda/alpha is 241.75284356961288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.172792900254152
the lambda is 200.0
the regulation term lambda/alpha is 1157.4549631716957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12249979947200598
the lambda is 200.0
the regulation term lambda/alpha is 1632.6557338218713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.823144301884891
the lambda is 200.0
the regulation term lambda/alpha is 52.31296132384953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 38.99733536409723
the lambda is 200.0
the regulation term lambda/alpha is 5.128555531620484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 2253.2517851732073
the lambda is 200.0
the regulation term lambda/alpha is 0.08876060869718828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07791600480806281
the lambda is 200.0
the regulation term lambda/alpha is 2566.866723886539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08174352099288087
the lambda is 200.0
the regulation term lambda/alpha is 2446.677089153258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7912139349773358
the lambda is 200.0
the regulation term lambda/alpha is 252.7761344417284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 438906541.08761275
the lambda is 200.0
the regulation term lambda/alpha is 4.5567787507654577e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8508448495744974
the lambda is 200.0
the regulation term lambda/alpha is 108.05876032557742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05910371914005841
the lambda is 200.0
the regulation term lambda/alpha is 3383.881808284499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 904.6127931206745
the lambda is 200.0
the regulation term lambda/alpha is 0.22108906873851847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06902212836755232
the lambda is 200.0
the regulation term lambda/alpha is 2897.621454600364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1616788503494699
the lambda is 200.0
the regulation term lambda/alpha is 1237.0201765271008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 3107724.2641947935
the lambda is 200.0
the regulation term lambda/alpha is 6.435577387101931e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 101564.3771066512
the lambda is 200.0
the regulation term lambda/alpha is 0.001969194374027254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 398.49645652931974
the lambda is 200.0
the regulation term lambda/alpha is 0.5018865205023092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.999998
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000016e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9970732
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992023415e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 15609.736807851665
the lambda is 200.0
the regulation term lambda/alpha is 0.012812515833028039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09579621992461172
the lambda is 200.0
the regulation term lambda/alpha is 2087.765051245164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06536487764059117
the lambda is 200.0
the regulation term lambda/alpha is 3059.747179512829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13590454103349692
the lambda is 200.0
the regulation term lambda/alpha is 1471.6211723249573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999934.6029062
the lambda is 200.0
the regulation term lambda/alpha is 4.0000005231768184e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11356080275729115
the lambda is 200.0
the regulation term lambda/alpha is 1761.1710655784268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10528212276729264
the lambda is 200.0
the regulation term lambda/alpha is 1899.6577457130527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 11.778489169791323
the lambda is 200.0
the regulation term lambda/alpha is 16.980106456517916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07082240925394077
the lambda is 200.0
the regulation term lambda/alpha is 2823.964930123743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13377935183983267
the lambda is 200.0
the regulation term lambda/alpha is 1494.9990207715314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.746968085621535
the lambda is 200.0
the regulation term lambda/alpha is 267.74905628476023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.6961800378658953
the lambda is 200.0
the regulation term lambda/alpha is 74.1790226139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3014648889298976
the lambda is 200.0
the regulation term lambda/alpha is 153.67298933776524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20452877368701258
the lambda is 200.0
the regulation term lambda/alpha is 977.8575229031446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8344610566092271
the lambda is 200.0
the regulation term lambda/alpha is 239.67565462274024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15248157328536036
the lambda is 200.0
the regulation term lambda/alpha is 1311.6338957607138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07922868606259414
the lambda is 200.0
the regulation term lambda/alpha is 2524.338215605282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 3244.9790984083747
the lambda is 200.0
the regulation term lambda/alpha is 0.06163367896517353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07224009850658025
the lambda is 200.0
the regulation term lambda/alpha is 2768.545504984081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08820067602272874
the lambda is 200.0
the regulation term lambda/alpha is 2267.5563161042132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06850065471919277
the lambda is 200.0
the regulation term lambda/alpha is 2919.68012305674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14633215587190823
the lambda is 200.0
the regulation term lambda/alpha is 1366.7535943027442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20231296710763852
the lambda is 200.0
the regulation term lambda/alpha is 988.5673808223675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1537965661003855
the lambda is 200.0
the regulation term lambda/alpha is 1300.4191515528166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09330519513043282
the lambda is 200.0
the regulation term lambda/alpha is 2143.5033678501695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1360616407133757
the lambda is 200.0
the regulation term lambda/alpha is 1469.9220070505792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.999999
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000008e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13271763437145273
the lambda is 200.0
the regulation term lambda/alpha is 1506.958747021033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14752945432418926
the lambda is 200.0
the regulation term lambda/alpha is 1355.661490894619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 10127779.724019269
the lambda is 200.0
the regulation term lambda/alpha is 1.974766488312098e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 5937.8082549132905
the lambda is 200.0
the regulation term lambda/alpha is 0.033682461846845306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07863045810100303
the lambda is 200.0
the regulation term lambda/alpha is 2543.5436194851413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1041779075034282
the lambda is 200.0
the regulation term lambda/alpha is 1919.792831252812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11435866143736953
the lambda is 200.0
the regulation term lambda/alpha is 1748.883709254794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22943591531712199
the lambda is 200.0
the regulation term lambda/alpha is 871.703105956902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060581078211867034
the lambda is 200.0
the regulation term lambda/alpha is 3301.3608523201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12332184124093934
the lambda is 200.0
the regulation term lambda/alpha is 1621.7727369902882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9080653578678173
the lambda is 200.0
the regulation term lambda/alpha is 220.2484636894529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09526109791823045
the lambda is 200.0
the regulation term lambda/alpha is 2099.4929133787077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 442.3578288367191
the lambda is 200.0
the regulation term lambda/alpha is 0.4521226639662865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10024171055400778
the lambda is 200.0
the regulation term lambda/alpha is 1995.17744554294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3930046244470952
the lambda is 200.0
the regulation term lambda/alpha is 508.89986417175925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06858681789157618
the lambda is 200.0
the regulation term lambda/alpha is 2916.0122330819486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09699992351645433
the lambda is 200.0
the regulation term lambda/alpha is 2061.857295857285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17305589817241865
the lambda is 200.0
the regulation term lambda/alpha is 1155.6959462932402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20236682606309261
the lambda is 200.0
the regulation term lambda/alpha is 988.304278378341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05871003585264579
the lambda is 200.0
the regulation term lambda/alpha is 3406.5726088461743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 19.681199378173545
the lambda is 200.0
the regulation term lambda/alpha is 10.161982314035193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11080795815528557
the lambda is 200.0
the regulation term lambda/alpha is 1804.9245138126385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059275650860025356
the lambda is 200.0
the regulation term lambda/alpha is 3374.0667052696526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.062280403629256575
the lambda is 200.0
the regulation term lambda/alpha is 3211.2829773962617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07839024663255709
the lambda is 200.0
the regulation term lambda/alpha is 2551.3378078458027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2781957206054457
the lambda is 200.0
the regulation term lambda/alpha is 718.9183196805976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06644134669197788
the lambda is 200.0
the regulation term lambda/alpha is 3010.173784213016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07743366895739362
the lambda is 200.0
the regulation term lambda/alpha is 2582.8557873196755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2282922162136052
the lambda is 200.0
the regulation term lambda/alpha is 162.8277028543989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.074213215655516
the lambda is 200.0
the regulation term lambda/alpha is 2694.9377982536553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 11740854.03870487
the lambda is 200.0
the regulation term lambda/alpha is 1.7034535932452656e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5432688521209328
the lambda is 200.0
the regulation term lambda/alpha is 368.1418495082055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2359845067765111
the lambda is 200.0
the regulation term lambda/alpha is 847.5132657306601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0693907477435813
the lambda is 200.0
the regulation term lambda/alpha is 2882.228632829514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0998216381258779
the lambda is 200.0
the regulation term lambda/alpha is 2003.5736114427852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07756485767324713
the lambda is 200.0
the regulation term lambda/alpha is 2578.4872943689024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07542027065447808
the lambda is 200.0
the regulation term lambda/alpha is 2651.8069779443967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4275590022109408
the lambda is 200.0
the regulation term lambda/alpha is 467.7716969255342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.192282732103772
the lambda is 200.0
the regulation term lambda/alpha is 91.22910885133632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 390815303.9660047
the lambda is 200.0
the regulation term lambda/alpha is 5.117506862458926e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06728122365686261
the lambda is 200.0
the regulation term lambda/alpha is 2972.5975410317947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499979092.072617
the lambda is 200.0
the regulation term lambda/alpha is 4.0001672704136193e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16829605449988055
the lambda is 200.0
the regulation term lambda/alpha is 1188.3819890747466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 7677.110375835438
the lambda is 200.0
the regulation term lambda/alpha is 0.026051468613701625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06164649992785092
the lambda is 200.0
the regulation term lambda/alpha is 3244.3042222035892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13998184000016703
the lambda is 200.0
the regulation term lambda/alpha is 1428.7567587321423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12819466562791026
the lambda is 200.0
the regulation term lambda/alpha is 1560.1273190298523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 490609345.15831435
the lambda is 200.0
the regulation term lambda/alpha is 4.076563195824616e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 52.38854524994881
the lambda is 200.0
the regulation term lambda/alpha is 3.8176284347234364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05961166249967403
the lambda is 200.0
the regulation term lambda/alpha is 3355.0481837525276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18442315073063253
the lambda is 200.0
the regulation term lambda/alpha is 1084.4625482628205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1532295418110153
the lambda is 200.0
the regulation term lambda/alpha is 1305.231338788892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1448614551222142
the lambda is 200.0
the regulation term lambda/alpha is 1380.629511358059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1409705233098409
the lambda is 200.0
the regulation term lambda/alpha is 1418.7363095788294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.756091866011052
the lambda is 200.0
the regulation term lambda/alpha is 53.246833979169644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2110183412247011
the lambda is 200.0
the regulation term lambda/alpha is 947.7849121514594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 11.530061487459795
the lambda is 200.0
the regulation term lambda/alpha is 17.345961269809525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 513217.7630035201
the lambda is 200.0
the regulation term lambda/alpha is 0.0003896981250795644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11788651270822073
the lambda is 200.0
the regulation term lambda/alpha is 1696.546919621053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17493815309397429
the lambda is 200.0
the regulation term lambda/alpha is 1143.2611838114174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05780453148821222
the lambda is 200.0
the regulation term lambda/alpha is 3459.93635534932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06867545661537305
the lambda is 200.0
the regulation term lambda/alpha is 2912.2485653081167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06466018269357017
the lambda is 200.0
the regulation term lambda/alpha is 3093.0936423086855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07200175489261375
the lambda is 200.0
the regulation term lambda/alpha is 2777.710075237581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  28  iterations
the alpha is 12472844.26050482
the lambda is 200.0
the regulation term lambda/alpha is 1.6034835024221277e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 167756.90227249777
the lambda is 200.0
the regulation term lambda/alpha is 0.0011922013180425076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3904319834007054
the lambda is 200.0
the regulation term lambda/alpha is 512.2531157872315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.48620591860345924
the lambda is 200.0
the regulation term lambda/alpha is 411.34834510954687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06024654007491104
the lambda is 200.0
the regulation term lambda/alpha is 3319.6927118357066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08722505017483857
the lambda is 200.0
the regulation term lambda/alpha is 2292.9192886574356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4296749270146422
the lambda is 200.0
the regulation term lambda/alpha is 465.4681654095784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.6090332
the lambda is 200.0
the regulation term lambda/alpha is 3.999999995127734e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15570584727609113
the lambda is 200.0
the regulation term lambda/alpha is 1284.473277650057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08263783476942864
the lambda is 200.0
the regulation term lambda/alpha is 2420.198938634205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11400767246766788
the lambda is 200.0
the regulation term lambda/alpha is 1754.2678985637497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09294989368882062
the lambda is 200.0
the regulation term lambda/alpha is 2151.696920381251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11089827845800936
the lambda is 200.0
the regulation term lambda/alpha is 1803.454506065468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 61182.5325612359
the lambda is 200.0
the regulation term lambda/alpha is 0.0032689068534360773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2694303106694538
the lambda is 200.0
the regulation term lambda/alpha is 742.3069791333418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09471403138733148
the lambda is 200.0
the regulation term lambda/alpha is 2111.6195464440034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12688475799601856
the lambda is 200.0
the regulation term lambda/alpha is 1576.233451194159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 844.2072476012585
the lambda is 200.0
the regulation term lambda/alpha is 0.23690865077062845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09532249059302692
the lambda is 200.0
the regulation term lambda/alpha is 2098.1407300181318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08304188534279018
the lambda is 200.0
the regulation term lambda/alpha is 2408.4231610881207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37543043530085246
the lambda is 200.0
the regulation term lambda/alpha is 532.721860548491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34648130420902684
the lambda is 200.0
the regulation term lambda/alpha is 577.231722376983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1102171086511834
the lambda is 200.0
the regulation term lambda/alpha is 1814.600314302952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99998206
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920001437e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06479659308092538
the lambda is 200.0
the regulation term lambda/alpha is 3086.5820329506705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08981704080015157
the lambda is 200.0
the regulation term lambda/alpha is 2226.7489355946636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12372621646090598
the lambda is 200.0
the regulation term lambda/alpha is 1616.4722863177053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2818727753660999
the lambda is 200.0
the regulation term lambda/alpha is 709.539967952696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1531947896824833
the lambda is 200.0
the regulation term lambda/alpha is 1305.5274295850843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.383885121158047
the lambda is 200.0
the regulation term lambda/alpha is 520.9891943628083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05891826764624275
the lambda is 200.0
the regulation term lambda/alpha is 3394.532935028583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5304442337118456
the lambda is 200.0
the regulation term lambda/alpha is 130.68101116950356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05853313100502305
the lambda is 200.0
the regulation term lambda/alpha is 3416.868302890493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09565826922411466
the lambda is 200.0
the regulation term lambda/alpha is 2090.775858921579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 200130530.03086767
the lambda is 200.0
the regulation term lambda/alpha is 9.993477755200692e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08050221360655745
the lambda is 200.0
the regulation term lambda/alpha is 2484.40373301373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07071866945814098
the lambda is 200.0
the regulation term lambda/alpha is 2828.107507288182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6299870980279316
the lambda is 200.0
the regulation term lambda/alpha is 317.4668189651284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11010904188680835
the lambda is 200.0
the regulation term lambda/alpha is 1816.381257822579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.09988965666411
the lambda is 200.0
the regulation term lambda/alpha is 95.24309973397389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6936581571433191
the lambda is 200.0
the regulation term lambda/alpha is 288.3264587036022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20434336633494835
the lambda is 200.0
the regulation term lambda/alpha is 978.7447646926354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06105167488358239
the lambda is 200.0
the regulation term lambda/alpha is 3275.9134025622398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9622765
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992301788e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6752046632391204
the lambda is 200.0
the regulation term lambda/alpha is 119.38839736351176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2011.8512220593054
the lambda is 200.0
the regulation term lambda/alpha is 0.09941092949968862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25732331231045463
the lambda is 200.0
the regulation term lambda/alpha is 777.2323393642027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 628054.7124630404
the lambda is 200.0
the regulation term lambda/alpha is 0.0003184435942143648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1549254641587277
the lambda is 200.0
the regulation term lambda/alpha is 1290.943364836987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07701164927107429
the lambda is 200.0
the regulation term lambda/alpha is 2597.0096977928292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6631325398106427
the lambda is 200.0
the regulation term lambda/alpha is 301.5988328021272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31044893134181484
the lambda is 200.0
the regulation term lambda/alpha is 644.2283409885318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.200880777250706
the lambda is 200.0
the regulation term lambda/alpha is 12.345007827033713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4038173553979945
the lambda is 200.0
the regulation term lambda/alpha is 495.27341340464153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08794083513413489
the lambda is 200.0
the regulation term lambda/alpha is 2274.2563189779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06502347815453094
the lambda is 200.0
the regulation term lambda/alpha is 3075.812086285078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1536561940192148
the lambda is 200.0
the regulation term lambda/alpha is 1301.6071449419728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.050613048753901706
the lambda is 200.0
the regulation term lambda/alpha is 3951.5501421870426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.450430642248581
the lambda is 200.0
the regulation term lambda/alpha is 44.939471273042905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11014069598207188
the lambda is 200.0
the regulation term lambda/alpha is 1815.8592354687403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.127159803364621
the lambda is 200.0
the regulation term lambda/alpha is 1572.8240741810157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06060236244816852
the lambda is 200.0
the regulation term lambda/alpha is 3300.2013769851683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06119999313613159
the lambda is 200.0
the regulation term lambda/alpha is 3267.97422272786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16116902344904055
the lambda is 200.0
the regulation term lambda/alpha is 1240.9332495784295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.657480956525145
the lambda is 200.0
the regulation term lambda/alpha is 18.766160673038602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11736030771966503
the lambda is 200.0
the regulation term lambda/alpha is 1704.1536775596555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17433596426235096
the lambda is 200.0
the regulation term lambda/alpha is 1147.2102204857072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06285874113444653
the lambda is 200.0
the regulation term lambda/alpha is 3181.7372793423665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.034162265383875
the lambda is 200.0
the regulation term lambda/alpha is 49.5765878621565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0612740192912888
the lambda is 200.0
the regulation term lambda/alpha is 188.4527429905036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24199033364430145
the lambda is 200.0
the regulation term lambda/alpha is 826.4792935654094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08375036298185444
the lambda is 200.0
the regulation term lambda/alpha is 2388.0493514199156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  34  iterations
the alpha is 2240051.956034684
the lambda is 200.0
the regulation term lambda/alpha is 8.928364338211059e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06173793360887414
the lambda is 200.0
the regulation term lambda/alpha is 3239.4994180895656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23004566068982188
the lambda is 200.0
the regulation term lambda/alpha is 869.3926214486027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06864701449401815
the lambda is 200.0
the regulation term lambda/alpha is 2913.4551804496587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 19.29038062265548
the lambda is 200.0
the regulation term lambda/alpha is 10.367861781073989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 498182247.2751488
the lambda is 200.0
the regulation term lambda/alpha is 4.0145950823000503e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11430758364720114
the lambda is 200.0
the regulation term lambda/alpha is 1749.665189470542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.1518362138693
the lambda is 200.0
the regulation term lambda/alpha is 48.17145708491476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 338.4190903742265
the lambda is 200.0
the regulation term lambda/alpha is 0.5909832089520671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 300713.94339438825
the lambda is 200.0
the regulation term lambda/alpha is 0.0006650838924941327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3421411869336869
the lambda is 200.0
the regulation term lambda/alpha is 584.554001792142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.579153130975473
the lambda is 200.0
the regulation term lambda/alpha is 345.33181174923135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8114872959401299
the lambda is 200.0
the regulation term lambda/alpha is 246.46103642114892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 12757145.861316506
the lambda is 200.0
the regulation term lambda/alpha is 1.5677487909459436e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10642113623538081
the lambda is 200.0
the regulation term lambda/alpha is 1879.325922226979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.1315953851054976
the lambda is 200.0
the regulation term lambda/alpha is 93.82643694835244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06101111614634896
the lambda is 200.0
the regulation term lambda/alpha is 3278.091151787074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16941397091071508
the lambda is 200.0
the regulation term lambda/alpha is 1180.5401816914168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34670609245676887
the lambda is 200.0
the regulation term lambda/alpha is 576.8574719376707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 30132088.36364088
the lambda is 200.0
the regulation term lambda/alpha is 6.6374423699530756e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.02384690932462
the lambda is 200.0
the regulation term lambda/alpha is 12.481397328104507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.641051672467818
the lambda is 200.0
the regulation term lambda/alpha is 121.87306673850158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 25739.915850908325
the lambda is 200.0
the regulation term lambda/alpha is 0.0077700331717651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6028201695308013
the lambda is 200.0
the regulation term lambda/alpha is 124.78006191957682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.250240875881665
the lambda is 200.0
the regulation term lambda/alpha is 88.87937382331931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1998233562228951
the lambda is 200.0
the regulation term lambda/alpha is 1000.8839996507108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.884732760021884
the lambda is 200.0
the regulation term lambda/alpha is 33.986250209815175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 43.75528402838213
the lambda is 200.0
the regulation term lambda/alpha is 4.570876511057929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33504797635766853
the lambda is 200.0
the regulation term lambda/alpha is 596.9294373128735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05323798535025753
the lambda is 200.0
the regulation term lambda/alpha is 3756.716162044485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.616492847153685
the lambda is 200.0
the regulation term lambda/alpha is 324.4157672281024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08163809291836531
the lambda is 200.0
the regulation term lambda/alpha is 2449.836747166444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 13447.114122398474
the lambda is 200.0
the regulation term lambda/alpha is 0.014873079694242031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09582591616695313
the lambda is 200.0
the regulation term lambda/alpha is 2087.1180574109944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 273.77430335708294
the lambda is 200.0
the regulation term lambda/alpha is 0.7305287514114889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 450816.90790091874
the lambda is 200.0
the regulation term lambda/alpha is 0.0004436390838383469
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22791596041723067
the lambda is 200.0
the regulation term lambda/alpha is 877.5164303275349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 648.4947581497021
the lambda is 200.0
the regulation term lambda/alpha is 0.30840650211367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14785029756877555
the lambda is 200.0
the regulation term lambda/alpha is 1352.7196311997002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09588356706186049
the lambda is 200.0
the regulation term lambda/alpha is 2085.863158083882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4548913218500712
the lambda is 200.0
the regulation term lambda/alpha is 137.46731250391656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22813659637136677
the lambda is 200.0
the regulation term lambda/alpha is 876.6677647563162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12272059318506148
the lambda is 200.0
the regulation term lambda/alpha is 1629.718328515589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07019346041718474
the lambda is 200.0
the regulation term lambda/alpha is 2849.268276721631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.3757230079313665
the lambda is 200.0
the regulation term lambda/alpha is 37.20429786001233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14127701308177293
the lambda is 200.0
the regulation term lambda/alpha is 1415.6584686868873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 303638803.2222078
the lambda is 200.0
the regulation term lambda/alpha is 6.586773425451713e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6128028450061194
the lambda is 200.0
the regulation term lambda/alpha is 326.36924196721515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 933.9515022606975
the lambda is 200.0
the regulation term lambda/alpha is 0.21414388168538245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3088331080194646
the lambda is 200.0
the regulation term lambda/alpha is 647.5989614021394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2621976234032129
the lambda is 200.0
the regulation term lambda/alpha is 762.7834203990319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06981945529928275
the lambda is 200.0
the regulation term lambda/alpha is 2864.5310843903785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0851457304333262
the lambda is 200.0
the regulation term lambda/alpha is 2348.9140204935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.8207882218015965
the lambda is 200.0
the regulation term lambda/alpha is 52.34521998858524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13448326997928375
the lambda is 200.0
the regulation term lambda/alpha is 1487.173832334748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 177311.69326223823
the lambda is 200.0
the regulation term lambda/alpha is 0.001127957194025588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09651621695326137
the lambda is 200.0
the regulation term lambda/alpha is 2072.190625714758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  31  iterations
the alpha is 13006578.001219634
the lambda is 200.0
the regulation term lambda/alpha is 1.5376834704812125e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.214042187473899
the lambda is 200.0
the regulation term lambda/alpha is 15.135414066528993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05873997071425906
the lambda is 200.0
the regulation term lambda/alpha is 3404.8365630432677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9944429725915361
the lambda is 200.0
the regulation term lambda/alpha is 201.11761610502052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  29  iterations
the alpha is 1222.9951180706128
the lambda is 200.0
the regulation term lambda/alpha is 0.16353295041399543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10414162550185163
the lambda is 200.0
the regulation term lambda/alpha is 1920.4616697330503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 336.8558731864321
the lambda is 200.0
the regulation term lambda/alpha is 0.5937257323380865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10728945553127991
the lambda is 200.0
the regulation term lambda/alpha is 1864.1160868011918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 451310802.59995204
the lambda is 200.0
the regulation term lambda/alpha is 4.431535847310145e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19285793802454784
the lambda is 200.0
the regulation term lambda/alpha is 1037.0327612573722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.8647940933388156
the lambda is 200.0
the regulation term lambda/alpha is 69.8130453651233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10146171570164005
the lambda is 200.0
the regulation term lambda/alpha is 1971.1868522716807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7946147568122338
the lambda is 200.0
the regulation term lambda/alpha is 251.6942937258585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4250857208181629
the lambda is 200.0
the regulation term lambda/alpha is 140.34243489940874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 6326.692366718042
the lambda is 200.0
the regulation term lambda/alpha is 0.03161209497906243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.5440275521605841
the lambda is 200.0
the regulation term lambda/alpha is 367.6284394158124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 13.237247067080228
the lambda is 200.0
the regulation term lambda/alpha is 15.108881702252196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5182207526203497
the lambda is 200.0
the regulation term lambda/alpha is 131.73314859174008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.661366176189595
the lambda is 200.0
the regulation term lambda/alpha is 20.701006084719086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 39.44007476306708
the lambda is 200.0
the regulation term lambda/alpha is 5.070984302171918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 141.8103787310574
the lambda is 200.0
the regulation term lambda/alpha is 1.4103340093273349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19711909837732292
the lambda is 200.0
the regulation term lambda/alpha is 1014.6150304379056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11117519778391714
the lambda is 200.0
the regulation term lambda/alpha is 1798.9623943707745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05837303968502224
the lambda is 200.0
the regulation term lambda/alpha is 3426.23925495724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06767368558768312
the lambda is 200.0
the regulation term lambda/alpha is 2955.358471512017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06198136141939714
the lambda is 200.0
the regulation term lambda/alpha is 3226.7764924797175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6063141438594256
the lambda is 200.0
the regulation term lambda/alpha is 329.8620063964237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15057466198754602
the lambda is 200.0
the regulation term lambda/alpha is 1328.2447216553735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08076084421671614
the lambda is 200.0
the regulation term lambda/alpha is 2476.4476144319865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09680789511952001
the lambda is 200.0
the regulation term lambda/alpha is 2065.947201445481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5468825938959914
the lambda is 200.0
the regulation term lambda/alpha is 365.70920748309084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499998715.99665064
the lambda is 200.0
the regulation term lambda/alpha is 4.0000102720531735e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13903185146204833
the lambda is 200.0
the regulation term lambda/alpha is 1438.519288183357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3686497164472378
the lambda is 200.0
the regulation term lambda/alpha is 146.1294278562108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 351344014.4764388
the lambda is 200.0
the regulation term lambda/alpha is 5.692426560846165e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499740218.7992497
the lambda is 200.0
the regulation term lambda/alpha is 4.0020793299476637e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.8631793199727524
the lambda is 200.0
the regulation term lambda/alpha is 69.85241846532452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.904506866895405
the lambda is 200.0
the regulation term lambda/alpha is 15.498461278909486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2604682408935356
the lambda is 200.0
the regulation term lambda/alpha is 767.8479315324607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05586870608071096
the lambda is 200.0
the regulation term lambda/alpha is 3579.8215858278363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07106056930199514
the lambda is 200.0
the regulation term lambda/alpha is 2814.500389801756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12787400372086588
the lambda is 200.0
the regulation term lambda/alpha is 1564.0395559724304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06791764005426254
the lambda is 200.0
the regulation term lambda/alpha is 2944.7430717588354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16662209884307558
the lambda is 200.0
the regulation term lambda/alpha is 1200.3209741605745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2119.618127365569
the lambda is 200.0
the regulation term lambda/alpha is 0.09435661896729296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7058685982742896
the lambda is 200.0
the regulation term lambda/alpha is 117.24232464465686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.333159623422027
the lambda is 200.0
the regulation term lambda/alpha is 27.273373316626344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05780755143097982
the lambda is 200.0
the regulation term lambda/alpha is 3459.755603708504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1466.5906157861727
the lambda is 200.0
the regulation term lambda/alpha is 0.13637070757662598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06513894666255327
the lambda is 200.0
the regulation term lambda/alpha is 3070.359750151977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2543638968079311
the lambda is 200.0
the regulation term lambda/alpha is 159.44336448853016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.0307203417630135
the lambda is 200.0
the regulation term lambda/alpha is 98.48721947915571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07422955672365494
the lambda is 200.0
the regulation term lambda/alpha is 2694.34452834696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09746365609514387
the lambda is 200.0
the regulation term lambda/alpha is 2052.0469682027965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10150086308890366
the lambda is 200.0
the regulation term lambda/alpha is 1970.4265945484806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15730511650384382
the lambda is 200.0
the regulation term lambda/alpha is 1271.4144615576627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 362582443.55550694
the lambda is 200.0
the regulation term lambda/alpha is 5.515986875668525e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07328276742723838
the lambda is 200.0
the regulation term lambda/alpha is 2729.1545750994965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11046006219114086
the lambda is 200.0
the regulation term lambda/alpha is 1810.609156220812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.453016592145671
the lambda is 200.0
the regulation term lambda/alpha is 26.834771870864895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 165660.27897740997
the lambda is 200.0
the regulation term lambda/alpha is 0.0012072900108255444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.31654231863792837
the lambda is 200.0
the regulation term lambda/alpha is 631.8270519423554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.560162972606226
the lambda is 200.0
the regulation term lambda/alpha is 357.0389507708369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 11.084806230663194
the lambda is 200.0
the regulation term lambda/alpha is 18.04271503156751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09682155536977811
the lambda is 200.0
the regulation term lambda/alpha is 2065.6557234199113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 2416.0410917694226
the lambda is 200.0
the regulation term lambda/alpha is 0.08278004901544415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.92333982683653
the lambda is 200.0
the regulation term lambda/alpha is 33.7647350729181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060942396852412276
the lambda is 200.0
the regulation term lambda/alpha is 3281.787562185182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13372555062032518
the lambda is 200.0
the regulation term lambda/alpha is 1495.6004972291485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7205308550116878
the lambda is 200.0
the regulation term lambda/alpha is 277.57312349483743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2632510720711199
the lambda is 200.0
the regulation term lambda/alpha is 158.32165467478833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0792772731393963
the lambda is 200.0
the regulation term lambda/alpha is 2522.7911112473844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 470704617.87667066
the lambda is 200.0
the regulation term lambda/alpha is 4.2489491796828305e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1062.7865740009563
the lambda is 200.0
the regulation term lambda/alpha is 0.18818453760389717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11837773747081942
the lambda is 200.0
the regulation term lambda/alpha is 1689.5068639853062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4685965576466838
the lambda is 200.0
the regulation term lambda/alpha is 426.80637904044875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08118675844493173
the lambda is 200.0
the regulation term lambda/alpha is 2463.4559111712565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 5198.048514259818
the lambda is 200.0
the regulation term lambda/alpha is 0.0384759779465966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.6265582208613774
the lambda is 200.0
the regulation term lambda/alpha is 76.14527574965012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3322515518513193
the lambda is 200.0
the regulation term lambda/alpha is 601.9535465992311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2685539447644069
the lambda is 200.0
the regulation term lambda/alpha is 744.7293324082544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 30.888718895087653
the lambda is 200.0
the regulation term lambda/alpha is 6.474855777583147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999982.3348578
the lambda is 200.0
the regulation term lambda/alpha is 4.0000001413211425e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05963575713686142
the lambda is 200.0
the regulation term lambda/alpha is 3353.69264350931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.7618033
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999939055734e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3697919315604014
the lambda is 200.0
the regulation term lambda/alpha is 540.8446829979907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10751586183922626
the lambda is 200.0
the regulation term lambda/alpha is 1860.1906414429325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1904428553604708
the lambda is 200.0
the regulation term lambda/alpha is 1050.183791990723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08979121572012165
the lambda is 200.0
the regulation term lambda/alpha is 2227.389376522065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4332333437688721
the lambda is 200.0
the regulation term lambda/alpha is 461.64498387893946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 5987.968666518291
the lambda is 200.0
the regulation term lambda/alpha is 0.03340030837474141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 41.37524509941776
the lambda is 200.0
the regulation term lambda/alpha is 4.833808223236711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15702319244396576
the lambda is 200.0
the regulation term lambda/alpha is 1273.6971964913441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09991227041530572
the lambda is 200.0
the regulation term lambda/alpha is 2001.7561323414955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05947808534259509
the lambda is 200.0
the regulation term lambda/alpha is 3362.5830227720944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.378810001072416
the lambda is 200.0
the regulation term lambda/alpha is 59.19243755538816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.687800229511892
the lambda is 200.0
the regulation term lambda/alpha is 290.78210709806405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18662700010808142
the lambda is 200.0
the regulation term lambda/alpha is 1071.6562977713506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 148.7589999064598
the lambda is 200.0
the regulation term lambda/alpha is 1.3444564707060462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05499372475414516
the lambda is 200.0
the regulation term lambda/alpha is 3636.7785759942544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1070288268173263
the lambda is 200.0
the regulation term lambda/alpha is 180.66376877916886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09225951656714343
the lambda is 200.0
the regulation term lambda/alpha is 2167.7980488272624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10371584147945954
the lambda is 200.0
the regulation term lambda/alpha is 1928.3457295152843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.000048145014665
the lambda is 200.0
the regulation term lambda/alpha is 24.999849547734613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0628658533087779
the lambda is 200.0
the regulation term lambda/alpha is 3181.3773212885694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1385516980793774
the lambda is 200.0
the regulation term lambda/alpha is 1443.5045024523508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 494219366.67147905
the lambda is 200.0
the regulation term lambda/alpha is 4.0467859717230666e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 97.29036489502778
the lambda is 200.0
the regulation term lambda/alpha is 2.0557020236874597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21842690841378243
the lambda is 200.0
the regulation term lambda/alpha is 915.6381027063069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 2968.385472860924
the lambda is 200.0
the regulation term lambda/alpha is 0.06737669410814101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 262317063.67529944
the lambda is 200.0
the regulation term lambda/alpha is 7.624361038424989e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11619965515997525
the lambda is 200.0
the regulation term lambda/alpha is 1721.1755037022658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 749.6576446551602
the lambda is 200.0
the regulation term lambda/alpha is 0.26678844860176043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0792068012935306
the lambda is 200.0
the regulation term lambda/alpha is 2525.0356880190725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 29.218154332826387
the lambda is 200.0
the regulation term lambda/alpha is 6.845059332693764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19051175391403746
the lambda is 200.0
the regulation term lambda/alpha is 1049.803993144926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09319201407056844
the lambda is 200.0
the regulation term lambda/alpha is 2146.106637941665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3173195767185921
the lambda is 200.0
the regulation term lambda/alpha is 630.2794238798749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 406414.56315225136
the lambda is 200.0
the regulation term lambda/alpha is 0.0004921083497814419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15091264309849994
the lambda is 200.0
the regulation term lambda/alpha is 1325.270009812637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 34652.16578908841
the lambda is 200.0
the regulation term lambda/alpha is 0.005771645016860038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06970483711218503
the lambda is 200.0
the regulation term lambda/alpha is 2869.24133655336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 470154.8220122941
the lambda is 200.0
the regulation term lambda/alpha is 0.000425391787207428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16778249766641828
the lambda is 200.0
the regulation term lambda/alpha is 1192.0194464957597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 39257.153384560756
the lambda is 200.0
the regulation term lambda/alpha is 0.005094612898719676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.0829571836298455
the lambda is 200.0
the regulation term lambda/alpha is 64.87277898699905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 142.72575826297322
the lambda is 200.0
the regulation term lambda/alpha is 1.401288754280069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1111.6382866810561
the lambda is 200.0
the regulation term lambda/alpha is 0.17991463805832614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3524848513107273
the lambda is 200.0
the regulation term lambda/alpha is 147.87596312533552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.599952571445142
the lambda is 200.0
the regulation term lambda/alpha is 23.25594220880591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6496827540270989
the lambda is 200.0
the regulation term lambda/alpha is 307.84255663289133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1240.7344296083065
the lambda is 200.0
the regulation term lambda/alpha is 0.16119484978194645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16540772231708945
the lambda is 200.0
the regulation term lambda/alpha is 1209.1333898945575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08696495856595242
the lambda is 200.0
the regulation term lambda/alpha is 2299.7768675796488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 54826.01494614909
the lambda is 200.0
the regulation term lambda/alpha is 0.003647903284534594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 47721.42768650467
the lambda is 200.0
the regulation term lambda/alpha is 0.0041909894505641285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.0875487188384745
the lambda is 200.0
the regulation term lambda/alpha is 95.80614727462806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16354343037514318
the lambda is 200.0
the regulation term lambda/alpha is 1222.9167478096253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1251214037635158
the lambda is 200.0
the regulation term lambda/alpha is 1598.4475396232574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10925965699025501
the lambda is 200.0
the regulation term lambda/alpha is 1830.5018110924348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1473305222937546
the lambda is 200.0
the regulation term lambda/alpha is 1357.4919635540998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 89224011.70372032
the lambda is 200.0
the regulation term lambda/alpha is 2.241549064887661e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.6029027742945883
the lambda is 200.0
the regulation term lambda/alpha is 76.83729180172776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.49264936771565915
the lambda is 200.0
the regulation term lambda/alpha is 405.9682465997467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 109.44956601378797
the lambda is 200.0
the regulation term lambda/alpha is 1.8273256558623987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0791915002073615
the lambda is 200.0
the regulation term lambda/alpha is 185.32392069579026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 23.478339995020708
the lambda is 200.0
the regulation term lambda/alpha is 8.518489809859473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12821516377640083
the lambda is 200.0
the regulation term lambda/alpha is 1559.8778967266883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6950210920882198
the lambda is 200.0
the regulation term lambda/alpha is 287.7610511057897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14778365629952517
the lambda is 200.0
the regulation term lambda/alpha is 1353.3296239108045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11638380726516233
the lambda is 200.0
the regulation term lambda/alpha is 1718.4521171775318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 67.219331698024
the lambda is 200.0
the regulation term lambda/alpha is 2.975334549567967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09125742301155514
the lambda is 200.0
the regulation term lambda/alpha is 2191.602539277005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08725150543233551
the lambda is 200.0
the regulation term lambda/alpha is 2292.224059733871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.919843255918382
the lambda is 200.0
the regulation term lambda/alpha is 217.42834848565337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05729629236282153
the lambda is 200.0
the regulation term lambda/alpha is 3490.627259675465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0721409714165274
the lambda is 200.0
the regulation term lambda/alpha is 2772.3496935637368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08858284770863864
the lambda is 200.0
the regulation term lambda/alpha is 2257.7734310126034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09499617270095138
the lambda is 200.0
the regulation term lambda/alpha is 2105.3479768032485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09736989817012347
the lambda is 200.0
the regulation term lambda/alpha is 2054.0228937136453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 75.51281959511752
the lambda is 200.0
the regulation term lambda/alpha is 2.648556908248881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12813013623214317
the lambda is 200.0
the regulation term lambda/alpha is 1560.913036396408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07788463177573195
the lambda is 200.0
the regulation term lambda/alpha is 2567.9006941433336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05942874018353641
the lambda is 200.0
the regulation term lambda/alpha is 3365.3750589753568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 201.03894820683757
the lambda is 200.0
the regulation term lambda/alpha is 0.9948321048428453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12786101386971585
the lambda is 200.0
the regulation term lambda/alpha is 1564.198452264662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999995.13560504
the lambda is 200.0
the regulation term lambda/alpha is 4.00000003891516e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4172651878957721
the lambda is 200.0
the regulation term lambda/alpha is 479.3114925512493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19532166877690366
the lambda is 200.0
the regulation term lambda/alpha is 1023.9519314594835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.7992348923991277
the lambda is 200.0
the regulation term lambda/alpha is 250.2393250120048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.159888228790004
the lambda is 200.0
the regulation term lambda/alpha is 21.83432755995751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 293977363.4018294
the lambda is 200.0
the regulation term lambda/alpha is 6.803244905854388e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08354858950060279
the lambda is 200.0
the regulation term lambda/alpha is 2393.8165945764654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2584815135817593
the lambda is 200.0
the regulation term lambda/alpha is 158.9216828706373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2684025200614473
the lambda is 200.0
the regulation term lambda/alpha is 745.1494865033777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 3363.2987193627278
the lambda is 200.0
the regulation term lambda/alpha is 0.05946542864259636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37017166240959287
the lambda is 200.0
the regulation term lambda/alpha is 540.2898717263266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0668179730042274
the lambda is 200.0
the regulation term lambda/alpha is 2993.2066330019697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 43.816712036592286
the lambda is 200.0
the regulation term lambda/alpha is 4.564468457445544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06117764831655379
the lambda is 200.0
the regulation term lambda/alpha is 3269.1678334075955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.3580598363143
the lambda is 200.0
the regulation term lambda/alpha is 84.81548980224541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4698.446616892441
the lambda is 200.0
the regulation term lambda/alpha is 0.04256726026873117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06685258341273223
the lambda is 200.0
the regulation term lambda/alpha is 2991.6570129421434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.433087545473071
the lambda is 200.0
the regulation term lambda/alpha is 58.25659769839644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09002657413000166
the lambda is 200.0
the regulation term lambda/alpha is 2221.56626454754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10658702520724776
the lambda is 200.0
the regulation term lambda/alpha is 1876.4009935648367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12877652308687595
the lambda is 200.0
the regulation term lambda/alpha is 1553.0781170809748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 256.567084580907
the lambda is 200.0
the regulation term lambda/alpha is 0.7795232203175739
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1469289640997021
the lambda is 200.0
the regulation term lambda/alpha is 1361.2020014262491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 448.6887648551926
the lambda is 200.0
the regulation term lambda/alpha is 0.4457432761093248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05731963100911485
the lambda is 200.0
the regulation term lambda/alpha is 3489.205992414648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18294710254716273
the lambda is 200.0
the regulation term lambda/alpha is 1093.2121756256902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8425052746744696
the lambda is 200.0
the regulation term lambda/alpha is 237.38723781554575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999902.58761567
the lambda is 200.0
the regulation term lambda/alpha is 4.0000007792992264e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 461790900.722835
the lambda is 200.0
the regulation term lambda/alpha is 4.330964505514135e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.694648783400519
the lambda is 200.0
the regulation term lambda/alpha is 14.604244560285686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17931662270279708
the lambda is 200.0
the regulation term lambda/alpha is 1115.3455657676755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 23.3106953503689
the lambda is 200.0
the regulation term lambda/alpha is 8.579752641177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0627665234875535
the lambda is 200.0
the regulation term lambda/alpha is 3186.411942022879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.059420514961862084
the lambda is 200.0
the regulation term lambda/alpha is 3365.8409074436017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 480189512.40619224
the lambda is 200.0
the regulation term lambda/alpha is 4.1650222429435324e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06878029564953535
the lambda is 200.0
the regulation term lambda/alpha is 2907.80954212649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 28568869.252005894
the lambda is 200.0
the regulation term lambda/alpha is 7.000627089430831e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10054140063017197
the lambda is 200.0
the regulation term lambda/alpha is 1989.2302946491975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.17171563887949454
the lambda is 200.0
the regulation term lambda/alpha is 1164.716279222271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09881052234190141
the lambda is 200.0
the regulation term lambda/alpha is 2024.0759309819819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 440453.8074917761
the lambda is 200.0
the regulation term lambda/alpha is 0.00045407712817588543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 55.602233383109294
the lambda is 200.0
the regulation term lambda/alpha is 3.5969778160162087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.520609980807147
the lambda is 200.0
the regulation term lambda/alpha is 384.16474399880417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20912744213749826
the lambda is 200.0
the regulation term lambda/alpha is 956.3546417236954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5252498318539287
the lambda is 200.0
the regulation term lambda/alpha is 131.12605936622307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 217.84417302215252
the lambda is 200.0
the regulation term lambda/alpha is 0.9180874439990738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 49.09466752859135
the lambda is 200.0
the regulation term lambda/alpha is 4.073762183714263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1065648477961414
the lambda is 200.0
the regulation term lambda/alpha is 1876.7914949083406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6542769780839691
the lambda is 200.0
the regulation term lambda/alpha is 305.6809374306492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10665126236982633
the lambda is 200.0
the regulation term lambda/alpha is 1875.2708177656207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 173.74659006215305
the lambda is 200.0
the regulation term lambda/alpha is 1.15110172768545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0904457363300442
the lambda is 200.0
the regulation term lambda/alpha is 2211.270626071117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6330230286158163
the lambda is 200.0
the regulation term lambda/alpha is 122.47224717309963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0721941979846461
the lambda is 200.0
the regulation term lambda/alpha is 2770.305725157235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.575344031572595
the lambda is 200.0
the regulation term lambda/alpha is 55.93867281969817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8892626323815465
the lambda is 200.0
the regulation term lambda/alpha is 224.90543593896132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08576059507563782
the lambda is 200.0
the regulation term lambda/alpha is 2332.0733703352576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.733965911573449
the lambda is 200.0
the regulation term lambda/alpha is 42.24787498174551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.7010504127264343
the lambda is 200.0
the regulation term lambda/alpha is 54.03871271579546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08236559576391538
the lambda is 200.0
the regulation term lambda/alpha is 2428.1983047055264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06791419334779598
the lambda is 200.0
the regulation term lambda/alpha is 2944.892520121357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.676848944929902
the lambda is 200.0
the regulation term lambda/alpha is 74.71471275165187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 46.61834236238328
the lambda is 200.0
the regulation term lambda/alpha is 4.290156832375525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10672649342139595
the lambda is 200.0
the regulation term lambda/alpha is 1873.9489473370543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1602461157002484
the lambda is 200.0
the regulation term lambda/alpha is 1248.080174212235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 9166.249894913286
the lambda is 200.0
the regulation term lambda/alpha is 0.021819173848946438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1375146893447813
the lambda is 200.0
the regulation term lambda/alpha is 1454.3900797285262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11007833489452545
the lambda is 200.0
the regulation term lambda/alpha is 1816.8879479475725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 159347.42355506215
the lambda is 200.0
the regulation term lambda/alpha is 0.0012551191323836525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09773408426273866
the lambda is 200.0
the regulation term lambda/alpha is 2046.3689971488325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 3276.838869814487
the lambda is 200.0
the regulation term lambda/alpha is 0.0610344322518741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17060633876671014
the lambda is 200.0
the regulation term lambda/alpha is 1172.2893852934926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.098285490805994
the lambda is 200.0
the regulation term lambda/alpha is 39.22887416969303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 69.84526165787223
the lambda is 200.0
the regulation term lambda/alpha is 2.863472700262382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08059740540043152
the lambda is 200.0
the regulation term lambda/alpha is 2481.469459300103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06417632436755093
the lambda is 200.0
the regulation term lambda/alpha is 3116.414066573198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06742171618121313
the lambda is 200.0
the regulation term lambda/alpha is 2966.4032796561983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08093486330649259
the lambda is 200.0
the regulation term lambda/alpha is 2471.122972588699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 44.61001171052708
the lambda is 200.0
the regulation term lambda/alpha is 4.483298531679245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2065182894191833
the lambda is 200.0
the regulation term lambda/alpha is 968.4372292763247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0730557152111637
the lambda is 200.0
the regulation term lambda/alpha is 186.38361192703078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09677953947904237
the lambda is 200.0
the regulation term lambda/alpha is 2066.552507653852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0877755907941041
the lambda is 200.0
the regulation term lambda/alpha is 2278.537782435912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09552152365933625
the lambda is 200.0
the regulation term lambda/alpha is 2093.768946915788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0952720056137213
the lambda is 200.0
the regulation term lambda/alpha is 2099.252542356425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23476658449716697
the lambda is 200.0
the regulation term lambda/alpha is 851.9099957447883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.43395087435616925
the lambda is 200.0
the regulation term lambda/alpha is 460.8816615399837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.7033805881588995
the lambda is 200.0
the regulation term lambda/alpha is 29.83569221077607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499995158.52774537
the lambda is 200.0
the regulation term lambda/alpha is 4.0000387321530784e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05752791390868711
the lambda is 200.0
the regulation term lambda/alpha is 3476.5731348690297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1574799445009503
the lambda is 200.0
the regulation term lambda/alpha is 1270.0029875791145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10261314130512393
the lambda is 200.0
the regulation term lambda/alpha is 1949.068096505229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 100873647.61333847
the lambda is 200.0
the regulation term lambda/alpha is 1.9826783776732793e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22035650050797415
the lambda is 200.0
the regulation term lambda/alpha is 907.6201497979521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 888.9267222595648
the lambda is 200.0
the regulation term lambda/alpha is 0.22499042383563356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5767182969379167
the lambda is 200.0
the regulation term lambda/alpha is 346.7897603767717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6890664515390332
the lambda is 200.0
the regulation term lambda/alpha is 290.2477686343589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061006692895158886
the lambda is 200.0
the regulation term lambda/alpha is 3278.3288276862286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1030.9789800633114
the lambda is 200.0
the regulation term lambda/alpha is 0.19399037600913863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23746275542317502
the lambda is 200.0
the regulation term lambda/alpha is 842.237342203775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 393.9925641055978
the lambda is 200.0
the regulation term lambda/alpha is 0.5076237934947322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33954202759858865
the lambda is 200.0
the regulation term lambda/alpha is 589.028702615992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15609481636015246
the lambda is 200.0
the regulation term lambda/alpha is 1281.2725282212225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0688160436325864
the lambda is 200.0
the regulation term lambda/alpha is 187.12293962229435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07048102069483397
the lambda is 200.0
the regulation term lambda/alpha is 2837.6433545982877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4619349648170218
the lambda is 200.0
the regulation term lambda/alpha is 432.9613803519344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 794.7261396026105
the lambda is 200.0
the regulation term lambda/alpha is 0.25165901816191255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06531194818057937
the lambda is 200.0
the regulation term lambda/alpha is 3062.2268294160363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3603574857104762
the lambda is 200.0
the regulation term lambda/alpha is 555.0044273554705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8695620636862658
the lambda is 200.0
the regulation term lambda/alpha is 106.97692464172846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10500121998099982
the lambda is 200.0
the regulation term lambda/alpha is 1904.739773844441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1273.2999730091567
the lambda is 200.0
the regulation term lambda/alpha is 0.15707217799380394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.0232570010127215
the lambda is 200.0
the regulation term lambda/alpha is 49.71096799176802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4012680060363283
the lambda is 200.0
the regulation term lambda/alpha is 498.4200010750253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.454198190142599
the lambda is 200.0
the regulation term lambda/alpha is 81.4930109570243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06559991507997365
the lambda is 200.0
the regulation term lambda/alpha is 3048.7844344947334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.4704262188247283
the lambda is 200.0
the regulation term lambda/alpha is 57.62980895981436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07066564602559897
the lambda is 200.0
the regulation term lambda/alpha is 2830.229556346928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8165561005509265
the lambda is 200.0
the regulation term lambda/alpha is 244.93111969289183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1936042295199516
the lambda is 200.0
the regulation term lambda/alpha is 167.55972796815306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.471953722640502
the lambda is 200.0
the regulation term lambda/alpha is 30.90256954408532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 32.42320626635347
the lambda is 200.0
the regulation term lambda/alpha is 6.16842141881403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08730630880704343
the lambda is 200.0
the regulation term lambda/alpha is 2290.7851990630143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.899767754079209
the lambda is 200.0
the regulation term lambda/alpha is 40.81826119890964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14731453064285804
the lambda is 200.0
the regulation term lambda/alpha is 1357.6393253756478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0949086537841544
the lambda is 200.0
the regulation term lambda/alpha is 2107.2893990768125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.676677779397871
the lambda is 200.0
the regulation term lambda/alpha is 119.283503638859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.23208229960435
the lambda is 200.0
the regulation term lambda/alpha is 89.60243089399133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.3336319739017153
the lambda is 200.0
the regulation term lambda/alpha is 85.70331664834454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.515869922112925
the lambda is 200.0
the regulation term lambda/alpha is 19.018873519863256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0900195031175335
the lambda is 200.0
the regulation term lambda/alpha is 183.48295551408552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2833088112255084
the lambda is 200.0
the regulation term lambda/alpha is 87.59218158171738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11121466962215468
the lambda is 200.0
the regulation term lambda/alpha is 1798.3239142775703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07659227544882631
the lambda is 200.0
the regulation term lambda/alpha is 2611.229380874397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11563602419474266
the lambda is 200.0
the regulation term lambda/alpha is 1729.5648254317352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.40969637791439073
the lambda is 200.0
the regulation term lambda/alpha is 488.16638560029344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 274.44935202167375
the lambda is 200.0
the regulation term lambda/alpha is 0.7287319081890404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5137648029474471
the lambda is 200.0
the regulation term lambda/alpha is 389.2831872728696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27687517074801454
the lambda is 200.0
the regulation term lambda/alpha is 722.347184327413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 25201121.287135344
the lambda is 200.0
the regulation term lambda/alpha is 7.936154813162854e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 34110.82385096713
the lambda is 200.0
the regulation term lambda/alpha is 0.005863241558568498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1432312142381872
the lambda is 200.0
the regulation term lambda/alpha is 1396.3436745527329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 44.531872000364956
the lambda is 200.0
the regulation term lambda/alpha is 4.491165338801856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.052803253171389
the lambda is 200.0
the regulation term lambda/alpha is 22.09260429137635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07190889699652835
the lambda is 200.0
the regulation term lambda/alpha is 2781.297007095738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06390103046806316
the lambda is 200.0
the regulation term lambda/alpha is 3129.8399812184125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06440885685256495
the lambda is 200.0
the regulation term lambda/alpha is 3105.163012872746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09813995821580646
the lambda is 200.0
the regulation term lambda/alpha is 2037.9059012864745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7170707139339204
the lambda is 200.0
the regulation term lambda/alpha is 278.91252022102583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0108100310396397
the lambda is 200.0
the regulation term lambda/alpha is 197.86111520311658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5190931224706533
the lambda is 200.0
the regulation term lambda/alpha is 385.28732387762835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 336976789.3528223
the lambda is 200.0
the regulation term lambda/alpha is 5.935126878741654e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.611619742246869
the lambda is 200.0
the regulation term lambda/alpha is 124.09875279956944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5738857650157645
the lambda is 200.0
the regulation term lambda/alpha is 127.0740256031204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06998176542739436
the lambda is 200.0
the regulation term lambda/alpha is 2857.8873193403324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 90.90398787639435
the lambda is 200.0
the regulation term lambda/alpha is 2.2001235003237447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0941400651822308
the lambda is 200.0
the regulation term lambda/alpha is 2124.4939613420893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12678323137961645
the lambda is 200.0
the regulation term lambda/alpha is 1577.4956815949633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.450220460958622
the lambda is 200.0
the regulation term lambda/alpha is 23.668021553287534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.813333442024927
the lambda is 200.0
the regulation term lambda/alpha is 245.90160648265882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41696779902967634
the lambda is 200.0
the regulation term lambda/alpha is 479.65334605074776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 477.37602438746103
the lambda is 200.0
the regulation term lambda/alpha is 0.41895694333754496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17662599249427405
the lambda is 200.0
the regulation term lambda/alpha is 1132.3361707733006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11192466333017655
the lambda is 200.0
the regulation term lambda/alpha is 1786.9162528548525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.427222778221116
the lambda is 200.0
the regulation term lambda/alpha is 58.356288149966446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 75070.76945346598
the lambda is 200.0
the regulation term lambda/alpha is 0.002664152791506603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 101871796.78019351
the lambda is 200.0
the regulation term lambda/alpha is 1.9632519138887432e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 539.2724386821216
the lambda is 200.0
the regulation term lambda/alpha is 0.37087005686543456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2000735386070541
the lambda is 200.0
the regulation term lambda/alpha is 999.6324421132045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999998.58676857
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000113058515e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 95.27036822648732
the lambda is 200.0
the regulation term lambda/alpha is 2.0992886216681534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.97209779583217
the lambda is 200.0
the regulation term lambda/alpha is 13.358181513860712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16351731848068
the lambda is 200.0
the regulation term lambda/alpha is 1223.1120339930876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06431485632972046
the lambda is 200.0
the regulation term lambda/alpha is 3109.7014191350722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5299396343518062
the lambda is 200.0
the regulation term lambda/alpha is 377.4014756315203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06258556575248633
the lambda is 200.0
the regulation term lambda/alpha is 3195.6250230438254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1223425209147214
the lambda is 200.0
the regulation term lambda/alpha is 1634.7546094739178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22852735929281046
the lambda is 200.0
the regulation term lambda/alpha is 875.1687352398862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08892537682101986
the lambda is 200.0
the regulation term lambda/alpha is 2249.07677819055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 23303.349356040388
the lambda is 200.0
the regulation term lambda/alpha is 0.008582457265876187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10014059344607756
the lambda is 200.0
the regulation term lambda/alpha is 1997.1920788315826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10929280357936628
the lambda is 200.0
the regulation term lambda/alpha is 1829.9466520205417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18187320968137974
the lambda is 200.0
the regulation term lambda/alpha is 1099.667182156054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0854150671991332
the lambda is 200.0
the regulation term lambda/alpha is 2341.5072604664488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.73183654411131
the lambda is 200.0
the regulation term lambda/alpha is 73.21082237922171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0668448490706981
the lambda is 200.0
the regulation term lambda/alpha is 2992.003165247199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06077669556071606
the lambda is 200.0
the regulation term lambda/alpha is 3290.735012077113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6044953385131207
the lambda is 200.0
the regulation term lambda/alpha is 330.8544950767374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2505834509143307
the lambda is 200.0
the regulation term lambda/alpha is 798.1373042403181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09406037189224854
the lambda is 200.0
the regulation term lambda/alpha is 2126.2939533038552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6806260503976571
the lambda is 200.0
the regulation term lambda/alpha is 293.84711308529785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09622710024715042
the lambda is 200.0
the regulation term lambda/alpha is 2078.4165737751473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.37403730780998434
the lambda is 200.0
the regulation term lambda/alpha is 534.7060194904475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.49513713822606836
the lambda is 200.0
the regulation term lambda/alpha is 403.92849689389396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.6633705605217863
the lambda is 200.0
the regulation term lambda/alpha is 54.59453164670115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05247967318442134
the lambda is 200.0
the regulation term lambda/alpha is 3810.9993424915283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8283166156529351
the lambda is 200.0
the regulation term lambda/alpha is 241.45356524370393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99976844
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920018526e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08735796761378377
the lambda is 200.0
the regulation term lambda/alpha is 2289.43055182116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.058280052516063795
the lambda is 200.0
the regulation term lambda/alpha is 3431.7058987699743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.672486773288375
the lambda is 200.0
the regulation term lambda/alpha is 29.973832364966203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06227531987104531
the lambda is 200.0
the regulation term lambda/alpha is 3211.5451259687434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 116.43654915890164
the lambda is 200.0
the regulation term lambda/alpha is 1.717673715381747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3148035736752912
the lambda is 200.0
the regulation term lambda/alpha is 635.3168029988533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.185250065634568
the lambda is 200.0
the regulation term lambda/alpha is 1079.621749740852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06458230374149804
the lambda is 200.0
the regulation term lambda/alpha is 3096.8235633175145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2208453051120127
the lambda is 200.0
the regulation term lambda/alpha is 905.6112825154243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10898105928795405
the lambda is 200.0
the regulation term lambda/alpha is 1835.1812811027291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16764110561034018
the lambda is 200.0
the regulation term lambda/alpha is 1193.0248209223448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06636384630839617
the lambda is 200.0
the regulation term lambda/alpha is 3013.6890961773042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10040706098829229
the lambda is 200.0
the regulation term lambda/alpha is 1991.8917856117757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0896290317446722
the lambda is 200.0
the regulation term lambda/alpha is 2231.419843625484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13530271424873413
the lambda is 200.0
the regulation term lambda/alpha is 1478.1669466905846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 3786.1346265158704
the lambda is 200.0
the regulation term lambda/alpha is 0.05282432341399513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06655457348058226
the lambda is 200.0
the regulation term lambda/alpha is 3005.052688953845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06929892273281235
the lambda is 200.0
the regulation term lambda/alpha is 2886.047749560499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.395890242188141
the lambda is 200.0
the regulation term lambda/alpha is 31.27008007122659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36271421100624884
the lambda is 200.0
the regulation term lambda/alpha is 551.3983018342626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  25  iterations
the alpha is 779701.8701767306
the lambda is 200.0
the regulation term lambda/alpha is 0.00025650829842779156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.219885142426491
the lambda is 200.0
the regulation term lambda/alpha is 163.9498613797174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 205177472.70556214
the lambda is 200.0
the regulation term lambda/alpha is 9.747658812768787e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1591670549618301
the lambda is 200.0
the regulation term lambda/alpha is 1256.5414372211767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06002259468792924
the lambda is 200.0
the regulation term lambda/alpha is 3332.0785454185093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054840539200777395
the lambda is 200.0
the regulation term lambda/alpha is 3646.937154789406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0960938460805354
the lambda is 200.0
the regulation term lambda/alpha is 2081.2987319956137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12633885538029493
the lambda is 200.0
the regulation term lambda/alpha is 1583.0442613871742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10954491857038728
the lambda is 200.0
the regulation term lambda/alpha is 1825.7350738865305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.905154063886547
the lambda is 200.0
the regulation term lambda/alpha is 20.191508250152825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1695.8904003575865
the lambda is 200.0
the regulation term lambda/alpha is 0.11793214936403264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21296446193015864
the lambda is 200.0
the regulation term lambda/alpha is 939.1238246388249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07659140216226452
the lambda is 200.0
the regulation term lambda/alpha is 2611.2591538184047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35076324658213964
the lambda is 200.0
the regulation term lambda/alpha is 570.185166059481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 20.390869326872455
the lambda is 200.0
the regulation term lambda/alpha is 9.80831159250413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.059523547377790975
the lambda is 200.0
the regulation term lambda/alpha is 3360.0147976836247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5245813618306856
the lambda is 200.0
the regulation term lambda/alpha is 381.256397104997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05698023514047842
the lambda is 200.0
the regulation term lambda/alpha is 3509.989025263274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10950376696327349
the lambda is 200.0
the regulation term lambda/alpha is 1826.4211866526753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6864340214905454
the lambda is 200.0
the regulation term lambda/alpha is 291.36085004311616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09581672944638421
the lambda is 200.0
the regulation term lambda/alpha is 2087.3181662072197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 379210423.0928784
the lambda is 200.0
the regulation term lambda/alpha is 5.274116633418983e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.37371737756002
the lambda is 200.0
the regulation term lambda/alpha is 31.378862311049602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 34.39406029599572
the lambda is 200.0
the regulation term lambda/alpha is 5.814957532748313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059581316594360646
the lambda is 200.0
the regulation term lambda/alpha is 3356.756974029841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07474618544570892
the lambda is 200.0
the regulation term lambda/alpha is 2675.721828577698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 21.689981657094386
the lambda is 200.0
the regulation term lambda/alpha is 9.220846894288808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1185768733212572
the lambda is 200.0
the regulation term lambda/alpha is 1686.6695368003614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.066458293820032
the lambda is 200.0
the regulation term lambda/alpha is 96.78395184559093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 495531316.3757297
the lambda is 200.0
the regulation term lambda/alpha is 4.0360718564223457e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.3696890960897448
the lambda is 200.0
the regulation term lambda/alpha is 59.352656668558545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 947.8649387584234
the lambda is 200.0
the regulation term lambda/alpha is 0.211000525308989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 3072.5990065386623
the lambda is 200.0
the regulation term lambda/alpha is 0.06509147453813167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 10.888349474962103
the lambda is 200.0
the regulation term lambda/alpha is 18.368256865735482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 162.3601271378223
the lambda is 200.0
the regulation term lambda/alpha is 1.2318295355252242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09105165510928886
the lambda is 200.0
the regulation term lambda/alpha is 2196.555348279402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 433042141.99072987
the lambda is 200.0
the regulation term lambda/alpha is 4.618488147148538e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07583354950998626
the lambda is 200.0
the regulation term lambda/alpha is 2637.3551191041465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1666.0220780959048
the lambda is 200.0
the regulation term lambda/alpha is 0.1200464283333987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09733239383652784
the lambda is 200.0
the regulation term lambda/alpha is 2054.8143543649503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2000856586328082
the lambda is 200.0
the regulation term lambda/alpha is 999.571890192463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.1102433320591363
the lambda is 200.0
the regulation term lambda/alpha is 64.30365043740485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.581419831110015
the lambda is 200.0
the regulation term lambda/alpha is 35.83317615443106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 36.76149511006332
the lambda is 200.0
the regulation term lambda/alpha is 5.440475133048948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 410223676.19245183
the lambda is 200.0
the regulation term lambda/alpha is 4.875389003782713e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08105732396093683
the lambda is 200.0
the regulation term lambda/alpha is 2467.389622884467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0738923959171877
the lambda is 200.0
the regulation term lambda/alpha is 2706.6384506484665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 142.99817309634273
the lambda is 200.0
the regulation term lambda/alpha is 1.398619266731843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06019186883980978
the lambda is 200.0
the regulation term lambda/alpha is 3322.707931402916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.025287637685764
the lambda is 200.0
the regulation term lambda/alpha is 195.06721104277776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08674228945721739
the lambda is 200.0
the regulation term lambda/alpha is 2305.680438589796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08815556021173557
the lambda is 200.0
the regulation term lambda/alpha is 2268.7167947164303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11010828763968998
the lambda is 200.0
the regulation term lambda/alpha is 1816.393700122418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 486843524.10525393
the lambda is 200.0
the regulation term lambda/alpha is 4.108096135561632e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2339356490340102
the lambda is 200.0
the regulation term lambda/alpha is 854.9359656207141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 189.2106736947011
the lambda is 200.0
the regulation term lambda/alpha is 1.0570228206190309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6677412673457397
the lambda is 200.0
the regulation term lambda/alpha is 119.92267860488096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 47266235.4325868
the lambda is 200.0
the regulation term lambda/alpha is 4.231350311053413e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.17787396139112438
the lambda is 200.0
the regulation term lambda/alpha is 1124.3916671998045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0860481007582479
the lambda is 200.0
the regulation term lambda/alpha is 2324.281398864339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05452332751737384
the lambda is 200.0
the regulation term lambda/alpha is 3668.154698303585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0193531461892495
the lambda is 200.0
the regulation term lambda/alpha is 196.20285741764778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.3598190355074875
the lambda is 200.0
the regulation term lambda/alpha is 555.8349621995976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.3583214947495694
the lambda is 200.0
the regulation term lambda/alpha is 84.80607942779152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.0663183748817815
the lambda is 200.0
the regulation term lambda/alpha is 65.22479910707601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.136090260089489
the lambda is 200.0
the regulation term lambda/alpha is 15.22523034175905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 497813753.5151184
the lambda is 200.0
the regulation term lambda/alpha is 4.0175667825120883e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 5708.424437480274
the lambda is 200.0
the regulation term lambda/alpha is 0.03503593718204335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0601485440171587
the lambda is 200.0
the regulation term lambda/alpha is 3325.1012683356985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0669489622540529
the lambda is 200.0
the regulation term lambda/alpha is 2987.350263041494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 5844.351882915662
the lambda is 200.0
the regulation term lambda/alpha is 0.034221074296474925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9473431358885038
the lambda is 200.0
the regulation term lambda/alpha is 102.70403623999582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 15.534984436653279
the lambda is 200.0
the regulation term lambda/alpha is 12.87416803122889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1668.5512852021197
the lambda is 200.0
the regulation term lambda/alpha is 0.11986446072934044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 1380697.897371136
the lambda is 200.0
the regulation term lambda/alpha is 0.00014485428012949263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20467144798480386
the lambda is 200.0
the regulation term lambda/alpha is 977.1758687848308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 5816.836244733184
the lambda is 200.0
the regulation term lambda/alpha is 0.0343829517602612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 219.40015004045412
the lambda is 200.0
the regulation term lambda/alpha is 0.911576404861724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 121.57178283102375
the lambda is 200.0
the regulation term lambda/alpha is 1.6451185903721257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.9021120055020546
the lambda is 200.0
the regulation term lambda/alpha is 68.91532774090872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.106050104030112
the lambda is 200.0
the regulation term lambda/alpha is 180.82363472618508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1784810554944518
the lambda is 200.0
the regulation term lambda/alpha is 1120.5671069455161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05544202273066704
the lambda is 200.0
the regulation term lambda/alpha is 3607.3719923889535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14013074860655722
the lambda is 200.0
the regulation term lambda/alpha is 1427.2385039598746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2026298709090357
the lambda is 200.0
the regulation term lambda/alpha is 987.0213068920312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.264968929086837
the lambda is 200.0
the regulation term lambda/alpha is 19.483741390904708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08203129509455873
the lambda is 200.0
the regulation term lambda/alpha is 2438.093897816156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1176751994790926
the lambda is 200.0
the regulation term lambda/alpha is 1699.5934647685394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8860982357408108
the lambda is 200.0
the regulation term lambda/alpha is 225.70860874448377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06931310247157238
the lambda is 200.0
the regulation term lambda/alpha is 2885.457335891532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.590043726512299
the lambda is 200.0
the regulation term lambda/alpha is 43.5725696565353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06627401766368776
the lambda is 200.0
the regulation term lambda/alpha is 3017.773888628788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2537995957179148
the lambda is 200.0
the regulation term lambda/alpha is 788.0233198727775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32128893440334017
the lambda is 200.0
the regulation term lambda/alpha is 622.4926494011266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09667923788800521
the lambda is 200.0
the regulation term lambda/alpha is 2068.6964892263964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14758347645059108
the lambda is 200.0
the regulation term lambda/alpha is 1355.1652584017916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12233337334780674
the lambda is 200.0
the regulation term lambda/alpha is 1634.8768494381236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06430932380308334
the lambda is 200.0
the regulation term lambda/alpha is 3109.9689465310616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12472476449888723
the lambda is 200.0
the regulation term lambda/alpha is 1603.5307888016446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 170.10127818854707
the lambda is 200.0
the regulation term lambda/alpha is 1.175770118425048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06876369815626183
the lambda is 200.0
the regulation term lambda/alpha is 2908.511400092396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11125121165838475
the lambda is 200.0
the regulation term lambda/alpha is 1797.7332293164868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07152744495133762
the lambda is 200.0
the regulation term lambda/alpha is 2796.129515545625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27342144996145695
the lambda is 200.0
the regulation term lambda/alpha is 731.4715068192095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.407919084799669
the lambda is 200.0
the regulation term lambda/alpha is 45.37288370144607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15887875223350348
the lambda is 200.0
the regulation term lambda/alpha is 1258.821567946737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 327274504.64082205
the lambda is 200.0
the regulation term lambda/alpha is 6.111077922782175e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.844302760472404
the lambda is 200.0
the regulation term lambda/alpha is 41.28561113725611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2840070855465316
the lambda is 200.0
the regulation term lambda/alpha is 704.2077827569977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 15.114015033695905
the lambda is 200.0
the regulation term lambda/alpha is 13.232751162024813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07302207866795403
the lambda is 200.0
the regulation term lambda/alpha is 2738.8976546318263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05970141651660233
the lambda is 200.0
the regulation term lambda/alpha is 3350.0042657175836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 251906070.01068762
the lambda is 200.0
the regulation term lambda/alpha is 7.939467278081652e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07948210404200716
the lambda is 200.0
the regulation term lambda/alpha is 2516.289703331178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.648061513354127
the lambda is 200.0
the regulation term lambda/alpha is 121.35469360786233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06264866090673153
the lambda is 200.0
the regulation term lambda/alpha is 3192.406622988333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.48518296778622927
the lambda is 200.0
the regulation term lambda/alpha is 412.21562437063875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 412.83915164086693
the lambda is 200.0
the regulation term lambda/alpha is 0.4844501767942351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05614951172271278
the lambda is 200.0
the regulation term lambda/alpha is 3561.918774782487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.392852569778001
the lambda is 200.0
the regulation term lambda/alpha is 83.58224928941408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1155783115672608
the lambda is 200.0
the regulation term lambda/alpha is 1730.4284626411938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16553083557865697
the lambda is 200.0
the regulation term lambda/alpha is 1208.2340991081626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.9303032550965337
the lambda is 200.0
the regulation term lambda/alpha is 214.98366140753407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.7942509757612655
the lambda is 200.0
the regulation term lambda/alpha is 71.57553195289196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08473012258393245
the lambda is 200.0
the regulation term lambda/alpha is 2360.4356266790815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09266770458780955
the lambda is 200.0
the regulation term lambda/alpha is 2158.2492076350622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.965091282699644
the lambda is 200.0
the regulation term lambda/alpha is 207.23428300019583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.053631837300724065
the lambda is 200.0
the regulation term lambda/alpha is 3729.128257877152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29084370021091654
the lambda is 200.0
the regulation term lambda/alpha is 687.6545713555503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1462853522674088
the lambda is 200.0
the regulation term lambda/alpha is 174.47662539208946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 14493228.483820347
the lambda is 200.0
the regulation term lambda/alpha is 1.379954785252105e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08188025637317772
the lambda is 200.0
the regulation term lambda/alpha is 2442.591277297415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499314888.20852745
the lambda is 200.0
the regulation term lambda/alpha is 4.0054884146870177e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4755945058656278
the lambda is 200.0
the regulation term lambda/alpha is 420.5263045164509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24536794740307313
the lambda is 200.0
the regulation term lambda/alpha is 815.1023885424371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056572589710358896
the lambda is 200.0
the regulation term lambda/alpha is 3535.2809730642116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 163.72532664599964
the lambda is 200.0
the regulation term lambda/alpha is 1.2215581064769045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05986722139315683
the lambda is 200.0
the regulation term lambda/alpha is 3340.7262830284144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05958655060722537
the lambda is 200.0
the regulation term lambda/alpha is 3356.4621204260197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 480627601.3840314
the lambda is 200.0
the regulation term lambda/alpha is 4.161225851866877e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07286473265157489
the lambda is 200.0
the regulation term lambda/alpha is 2744.8121021230045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09634023697948647
the lambda is 200.0
the regulation term lambda/alpha is 2075.9757944397165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 15501.75646854968
the lambda is 200.0
the regulation term lambda/alpha is 0.012901763771464517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13179833558680817
the lambda is 200.0
the regulation term lambda/alpha is 1517.4698459547026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09695726730688753
the lambda is 200.0
the regulation term lambda/alpha is 2062.764406993478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.6943010600848805
the lambda is 200.0
the regulation term lambda/alpha is 42.60485159347315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 11.205598864553444
the lambda is 200.0
the regulation term lambda/alpha is 17.848220556302255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08273578141403397
the lambda is 200.0
the regulation term lambda/alpha is 2417.3337893449234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05830343410160448
the lambda is 200.0
the regulation term lambda/alpha is 3430.3296723733824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 6322.858003924612
the lambda is 200.0
the regulation term lambda/alpha is 0.031631265461893904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28631375003688764
the lambda is 200.0
the regulation term lambda/alpha is 698.5343874481499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 19931.734554066832
the lambda is 200.0
the regulation term lambda/alpha is 0.010034249626267092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09008246442366856
the lambda is 200.0
the regulation term lambda/alpha is 2220.1879275790698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07820916909707304
the lambda is 200.0
the regulation term lambda/alpha is 2557.2449152574486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 49484.92795848303
the lambda is 200.0
the regulation term lambda/alpha is 0.004041634660311043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.5748634291485886
the lambda is 200.0
the regulation term lambda/alpha is 347.90872033069394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9032198379616092
the lambda is 200.0
the regulation term lambda/alpha is 221.43003463183553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18356770789139926
the lambda is 200.0
the regulation term lambda/alpha is 1089.5162460617653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2100189237406515
the lambda is 200.0
the regulation term lambda/alpha is 952.2951381608655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08124875105021397
the lambda is 200.0
the regulation term lambda/alpha is 2461.576300125457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.513614659700238
the lambda is 200.0
the regulation term lambda/alpha is 19.02295323478237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 263320402.79718703
the lambda is 200.0
the regulation term lambda/alpha is 7.5953096636436e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07774741264074217
the lambda is 200.0
the regulation term lambda/alpha is 2572.4328721287056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 474871713.4371687
the lambda is 200.0
the regulation term lambda/alpha is 4.211663789202774e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.032109138417731
the lambda is 200.0
the regulation term lambda/alpha is 98.41991073162869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07997871446168817
the lambda is 200.0
the regulation term lambda/alpha is 2500.6653501014334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.6062011034285698
the lambda is 200.0
the regulation term lambda/alpha is 329.92351691350314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.4105656304942222
the lambda is 200.0
the regulation term lambda/alpha is 58.64129932342576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.8693604960139036
the lambda is 200.0
the regulation term lambda/alpha is 69.70194239372803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2672340659323467
the lambda is 200.0
the regulation term lambda/alpha is 157.824040070177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 658772.9309960037
the lambda is 200.0
the regulation term lambda/alpha is 0.0003035947450020731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06185051458721471
the lambda is 200.0
the regulation term lambda/alpha is 3233.602846068197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2629668994697842
the lambda is 200.0
the regulation term lambda/alpha is 760.551994959277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 19.62844830759504
the lambda is 200.0
the regulation term lambda/alpha is 10.189292442572341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12860743231842903
the lambda is 200.0
the regulation term lambda/alpha is 1555.1200766127158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1817995935578002
the lambda is 200.0
the regulation term lambda/alpha is 1100.1124704737763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 498288037.74153674
the lambda is 200.0
the regulation term lambda/alpha is 4.0137427522139413e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 192.01386972049326
the lambda is 200.0
the regulation term lambda/alpha is 1.041591424052501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06786104452852054
the lambda is 200.0
the regulation term lambda/alpha is 2947.1989620782256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 18.588766955184603
the lambda is 200.0
the regulation term lambda/alpha is 10.759185936440927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11722300322243043
the lambda is 200.0
the regulation term lambda/alpha is 1706.1497701138094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 530.783556981447
the lambda is 200.0
the regulation term lambda/alpha is 0.3768014237995523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 1022231.0488571691
the lambda is 200.0
the regulation term lambda/alpha is 0.00019565048451971345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07494859359644082
the lambda is 200.0
the regulation term lambda/alpha is 2668.495703560442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08281103542294206
the lambda is 200.0
the regulation term lambda/alpha is 2415.13705242951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 18304.851808486474
the lambda is 200.0
the regulation term lambda/alpha is 0.010926064963130498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1692872706042973
the lambda is 200.0
the regulation term lambda/alpha is 1181.4237378042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07781017165840416
the lambda is 200.0
the regulation term lambda/alpha is 2570.3580359393577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11458397955545843
the lambda is 200.0
the regulation term lambda/alpha is 1745.4447015710462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.1461777146086054
the lambda is 200.0
the regulation term lambda/alpha is 63.56919988064967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 3819384.30830988
the lambda is 200.0
the regulation term lambda/alpha is 5.236446082811243e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06255323103595972
the lambda is 200.0
the regulation term lambda/alpha is 3197.276890222134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08081375010444192
the lambda is 200.0
the regulation term lambda/alpha is 2474.8263722636852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09244262690811968
the lambda is 200.0
the regulation term lambda/alpha is 2163.5040747899066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09076355058489083
the lambda is 200.0
the regulation term lambda/alpha is 2203.5277235319336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 49.26977587848228
the lambda is 200.0
the regulation term lambda/alpha is 4.059283738031911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09846324864023273
the lambda is 200.0
the regulation term lambda/alpha is 2031.2147198267303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16641328532823862
the lambda is 200.0
the regulation term lambda/alpha is 1201.827123390503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15194268374268505
the lambda is 200.0
the regulation term lambda/alpha is 1316.2858195837848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08922375107470315
the lambda is 200.0
the regulation term lambda/alpha is 2241.5556126142774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33143533433092603
the lambda is 200.0
the regulation term lambda/alpha is 603.4359625648946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08102101924382595
the lambda is 200.0
the regulation term lambda/alpha is 2468.495235762424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.062393548021882565
the lambda is 200.0
the regulation term lambda/alpha is 3205.4596403117885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 760481.4508822409
the lambda is 200.0
the regulation term lambda/alpha is 0.00026299129290790503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 234372924.80162174
the lambda is 200.0
the regulation term lambda/alpha is 8.5334088896695e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.067049944617481
the lambda is 200.0
the regulation term lambda/alpha is 2982.8510842327646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19062407939459908
the lambda is 200.0
the regulation term lambda/alpha is 1049.1853948104447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0495223701244873
the lambda is 200.0
the regulation term lambda/alpha is 190.56287478300948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2748601274354314
the lambda is 200.0
the regulation term lambda/alpha is 727.6428264299007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09649305227606869
the lambda is 200.0
the regulation term lambda/alpha is 2072.6880877163644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059962614048868594
the lambda is 200.0
the regulation term lambda/alpha is 3335.4116256006305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1003.294350436816
the lambda is 200.0
the regulation term lambda/alpha is 0.19934329333452705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.7682383688545595
the lambda is 200.0
the regulation term lambda/alpha is 72.24811354766241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0757121606976788
the lambda is 200.0
the regulation term lambda/alpha is 2641.5835733259114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09039853561264587
the lambda is 200.0
the regulation term lambda/alpha is 2212.4252195521403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.1169338111214047
the lambda is 200.0
the regulation term lambda/alpha is 94.47626512897627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1018611208583837
the lambda is 200.0
the regulation term lambda/alpha is 1963.4576795798037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4369256774053338
the lambda is 200.0
the regulation term lambda/alpha is 457.74375447030775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10389816296762122
the lambda is 200.0
the regulation term lambda/alpha is 1924.9618500216209
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08536148208646127
the lambda is 200.0
the regulation term lambda/alpha is 2342.977126351007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09892738063553441
the lambda is 200.0
the regulation term lambda/alpha is 2021.6849846336738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0518394042532588
the lambda is 200.0
the regulation term lambda/alpha is 3858.0690283960453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 150.20057035894914
the lambda is 200.0
the regulation term lambda/alpha is 1.3315528664241438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.015242741641353
the lambda is 200.0
the regulation term lambda/alpha is 24.952457018044623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1483324904072285
the lambda is 200.0
the regulation term lambda/alpha is 174.16558502936272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0758317121058227
the lambda is 200.0
the regulation term lambda/alpha is 2637.419022280563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2757664601082136
the lambda is 200.0
the regulation term lambda/alpha is 725.2513591446833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 790.9891471525855
the lambda is 200.0
the regulation term lambda/alpha is 0.2528479698109171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1590738130440534
the lambda is 200.0
the regulation term lambda/alpha is 1257.2779653217506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16939598935721487
the lambda is 200.0
the regulation term lambda/alpha is 1180.6654972110864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19095298665520175
the lambda is 200.0
the regulation term lambda/alpha is 1047.378223840689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3444360064454202
the lambda is 200.0
the regulation term lambda/alpha is 580.6593859451575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1557.8993674008973
the lambda is 200.0
the regulation term lambda/alpha is 0.12837799679812925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.548713440934392
the lambda is 200.0
the regulation term lambda/alpha is 364.4889756289265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06544899242955442
the lambda is 200.0
the regulation term lambda/alpha is 3055.814804410758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11266393020281734
the lambda is 200.0
the regulation term lambda/alpha is 1775.19104508391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 467034759.4905798
the lambda is 200.0
the regulation term lambda/alpha is 4.2823365057057184e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.3374466944550238
the lambda is 200.0
the regulation term lambda/alpha is 149.53867008620855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06812232981075206
the lambda is 200.0
the regulation term lambda/alpha is 2935.8948902013785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.057431978603498315
the lambda is 200.0
the regulation term lambda/alpha is 3482.3804588166763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12003530853067453
the lambda is 200.0
the regulation term lambda/alpha is 1666.176414657949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05971775928408675
the lambda is 200.0
the regulation term lambda/alpha is 3349.0874808039703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 769.6228138736811
the lambda is 200.0
the regulation term lambda/alpha is 0.2598675564116349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.897345221299083
the lambda is 200.0
the regulation term lambda/alpha is 105.41044284132073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21056609300437204
the lambda is 200.0
the regulation term lambda/alpha is 949.8205392254077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14052273355323658
the lambda is 200.0
the regulation term lambda/alpha is 1423.2572548429016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10618715139849944
the lambda is 200.0
the regulation term lambda/alpha is 1883.467042537373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 344309663.66167355
the lambda is 200.0
the regulation term lambda/alpha is 5.808724561286916e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06880925446117786
the lambda is 200.0
the regulation term lambda/alpha is 2906.5857720176273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0683574747961203
the lambda is 200.0
the regulation term lambda/alpha is 2925.79561483964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.141576286019051
the lambda is 200.0
the regulation term lambda/alpha is 63.66230891481436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3532014587535666
the lambda is 200.0
the regulation term lambda/alpha is 566.2490769596245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060563314556470245
the lambda is 200.0
the regulation term lambda/alpha is 3302.3291651832674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12216762403761734
the lambda is 200.0
the regulation term lambda/alpha is 1637.0949470083567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08855131615383165
the lambda is 200.0
the regulation term lambda/alpha is 2258.5773841301166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09661986754220483
the lambda is 200.0
the regulation term lambda/alpha is 2069.9676483476583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15900039304091287
the lambda is 200.0
the regulation term lambda/alpha is 1257.8585258499165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 81.35565681044066
the lambda is 200.0
the regulation term lambda/alpha is 2.458341654914072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 10444.985763540466
the lambda is 200.0
the regulation term lambda/alpha is 0.019147943762463048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19845695326050816
the lambda is 200.0
the regulation term lambda/alpha is 1007.7752213472023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05775796921233319
the lambda is 200.0
the regulation term lambda/alpha is 3462.725624315987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08977559330715636
the lambda is 200.0
the regulation term lambda/alpha is 2227.7769784904026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14182309485591407
the lambda is 200.0
the regulation term lambda/alpha is 1410.2075561331606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09825529120405176
the lambda is 200.0
the regulation term lambda/alpha is 2035.513788103786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 5.284061285169529
the lambda is 200.0
the regulation term lambda/alpha is 37.849674560234284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.543581614460873
the lambda is 200.0
the regulation term lambda/alpha is 11.400180669786575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09083241190995628
the lambda is 200.0
the regulation term lambda/alpha is 2201.8571982682065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11899802167732938
the lambda is 200.0
the regulation term lambda/alpha is 1680.7002098094754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2221456554854505
the lambda is 200.0
the regulation term lambda/alpha is 900.3102021641789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08161819572219527
the lambda is 200.0
the regulation term lambda/alpha is 2450.4339777461164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06360390667012417
the lambda is 200.0
the regulation term lambda/alpha is 3144.460937553438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29075933741015975
the lambda is 200.0
the regulation term lambda/alpha is 687.8540919147506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11681425130839605
the lambda is 200.0
the regulation term lambda/alpha is 1712.119863457319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 142.25828952408938
the lambda is 200.0
the regulation term lambda/alpha is 1.405893467924292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1706899049067543
the lambda is 200.0
the regulation term lambda/alpha is 170.83943336466206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0820336242699478
the lambda is 200.0
the regulation term lambda/alpha is 2438.024673173778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3201309033016704
the lambda is 200.0
the regulation term lambda/alpha is 624.7444340340148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1540987.4855334603
the lambda is 200.0
the regulation term lambda/alpha is 0.0001297869073419268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12713748245871817
the lambda is 200.0
the regulation term lambda/alpha is 1573.1002072102572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08562076091849724
the lambda is 200.0
the regulation term lambda/alpha is 2335.8820670886216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06924814301274462
the lambda is 200.0
the regulation term lambda/alpha is 2888.164090742353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.566096481654534
the lambda is 200.0
the regulation term lambda/alpha is 77.93939215841434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 22.170849069512236
the lambda is 200.0
the regulation term lambda/alpha is 9.020854337736017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.308215367430941
the lambda is 200.0
the regulation term lambda/alpha is 648.8969114909955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1820503950163364
the lambda is 200.0
the regulation term lambda/alpha is 1098.5969021492806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9991904
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992006477e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 308.62433076444387
the lambda is 200.0
the regulation term lambda/alpha is 0.6480370471913606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05480967174983489
the lambda is 200.0
the regulation term lambda/alpha is 3648.991019556735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08210433321977265
the lambda is 200.0
the regulation term lambda/alpha is 2435.9250255970087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10144993200319954
the lambda is 200.0
the regulation term lambda/alpha is 1971.4158112367425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06392997449153227
the lambda is 200.0
the regulation term lambda/alpha is 3128.4229595068996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2348474139497507
the lambda is 200.0
the regulation term lambda/alpha is 851.6167865607971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054192238381845614
the lambda is 200.0
the regulation term lambda/alpha is 3690.565401465313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059873048219972046
the lambda is 200.0
the regulation term lambda/alpha is 3340.4011645641476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36825555432680473
the lambda is 200.0
the regulation term lambda/alpha is 543.1011091349677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 10.050715779658942
the lambda is 200.0
the regulation term lambda/alpha is 19.899080262996627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09904373504423533
the lambda is 200.0
the regulation term lambda/alpha is 2019.3099534329472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 64017.77292423005
the lambda is 200.0
the regulation term lambda/alpha is 0.0031241324223620737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 37.92432473819927
the lambda is 200.0
the regulation term lambda/alpha is 5.273660147692756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.507629929259398
the lambda is 200.0
the regulation term lambda/alpha is 79.75658515890656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06631112027478997
the lambda is 200.0
the regulation term lambda/alpha is 3016.0853740852212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06241335488326194
the lambda is 200.0
the regulation term lambda/alpha is 3204.442388557391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.733172632718794
the lambda is 200.0
the regulation term lambda/alpha is 15.707004512456365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35976624093219634
the lambda is 200.0
the regulation term lambda/alpha is 555.9165292490386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06181080907298893
the lambda is 200.0
the regulation term lambda/alpha is 3235.680021011069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 39125497.739688374
the lambda is 200.0
the regulation term lambda/alpha is 5.111756055620034e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.11238974
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999991008823e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06452442533302778
the lambda is 200.0
the regulation term lambda/alpha is 3099.6014140032494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7896396320659202
the lambda is 200.0
the regulation term lambda/alpha is 111.75434228014075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.6681191454313113
the lambda is 200.0
the regulation term lambda/alpha is 54.523855979188276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06710464169874322
the lambda is 200.0
the regulation term lambda/alpha is 2980.4197584106278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 159.63611169293551
the lambda is 200.0
the regulation term lambda/alpha is 1.2528493576986237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10405503501533821
the lambda is 200.0
the regulation term lambda/alpha is 1922.059802012647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39578703083871264
the lambda is 200.0
the regulation term lambda/alpha is 505.3222678271691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12001925761392007
the lambda is 200.0
the regulation term lambda/alpha is 1666.3992427228911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19718302424205017
the lambda is 200.0
the regulation term lambda/alpha is 1014.2860967305779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.4340522219988316
the lambda is 200.0
the regulation term lambda/alpha is 82.16750577181988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06584640429225765
the lambda is 200.0
the regulation term lambda/alpha is 3037.3716249152335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8195223142944364
the lambda is 200.0
the regulation term lambda/alpha is 244.04460563369648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 14130089.394188203
the lambda is 200.0
the regulation term lambda/alpha is 1.4154192122964295e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07002726589419236
the lambda is 200.0
the regulation term lambda/alpha is 2856.030396819859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07376183727575336
the lambda is 200.0
the regulation term lambda/alpha is 2711.4292076580778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06375065190130345
the lambda is 200.0
the regulation term lambda/alpha is 3137.222821025157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07279810041987476
the lambda is 200.0
the regulation term lambda/alpha is 2747.3244335562026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09069454166568713
the lambda is 200.0
the regulation term lambda/alpha is 2205.2043742304604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 529.4225260705522
the lambda is 200.0
the regulation term lambda/alpha is 0.37777009883660956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.130001687685026
the lambda is 200.0
the regulation term lambda/alpha is 93.89663921692396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.219613770453434
the lambda is 200.0
the regulation term lambda/alpha is 38.31701133369984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07289113422180167
the lambda is 200.0
the regulation term lambda/alpha is 2743.817916063929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09534189862275068
the lambda is 200.0
the regulation term lambda/alpha is 2097.7136273671354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12773357315862532
the lambda is 200.0
the regulation term lambda/alpha is 1565.7590643896806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06131220020094672
the lambda is 200.0
the regulation term lambda/alpha is 3261.993524037844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6047579682426388
the lambda is 200.0
the regulation term lambda/alpha is 330.7108140818357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21956438502554831
the lambda is 200.0
the regulation term lambda/alpha is 910.894542285299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.2370010633830826
the lambda is 200.0
the regulation term lambda/alpha is 89.405411232811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10260840260682551
the lambda is 200.0
the regulation term lambda/alpha is 1949.1581090718198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  24  iterations
the alpha is 302272.49382812
the lambda is 200.0
the regulation term lambda/alpha is 0.0006616546463328721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07102597083585516
the lambda is 200.0
the regulation term lambda/alpha is 2815.871400930383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 6350.066442317542
the lambda is 200.0
the regulation term lambda/alpha is 0.03149573344102008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.056623419380421924
the lambda is 200.0
the regulation term lambda/alpha is 3532.1074246030407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09686216021747658
the lambda is 200.0
the regulation term lambda/alpha is 2064.7897956328516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 20.454914275861675
the lambda is 200.0
the regulation term lambda/alpha is 9.777601475260882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1619258271844944
the lambda is 200.0
the regulation term lambda/alpha is 1235.133415573816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.056527771996441
the lambda is 200.0
the regulation term lambda/alpha is 24.82459015348732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21150063600614674
the lambda is 200.0
the regulation term lambda/alpha is 945.6236339364365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24274475097881382
the lambda is 200.0
the regulation term lambda/alpha is 823.910709473819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2551.567689098105
the lambda is 200.0
the regulation term lambda/alpha is 0.0783831841320633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 372802478.04445934
the lambda is 200.0
the regulation term lambda/alpha is 5.364771206701812e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 153.1542841279416
the lambda is 200.0
the regulation term lambda/alpha is 1.3058727095934486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 368.2033951553446
the lambda is 200.0
the regulation term lambda/alpha is 0.5431780440688773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 146769.2566046963
the lambda is 200.0
the regulation term lambda/alpha is 0.001362683198285004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4320915058802328
the lambda is 200.0
the regulation term lambda/alpha is 139.6558803531694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05439081743395012
the lambda is 200.0
the regulation term lambda/alpha is 3677.09127083577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17694502814200821
the lambda is 200.0
the regulation term lambda/alpha is 1130.2945445830153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12107765004038736
the lambda is 200.0
the regulation term lambda/alpha is 1651.8325218013965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06795735390935789
the lambda is 200.0
the regulation term lambda/alpha is 2943.0221822168314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 5926.415777685004
the lambda is 200.0
the regulation term lambda/alpha is 0.03374721037175098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20717899876382811
the lambda is 200.0
the regulation term lambda/alpha is 965.3488104167751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07676073947782205
the lambda is 200.0
the regulation term lambda/alpha is 2605.498609843182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1972188451383137
the lambda is 200.0
the regulation term lambda/alpha is 167.05383548894451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5337400020139957
the lambda is 200.0
the regulation term lambda/alpha is 130.40019803706923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13926933375203113
the lambda is 200.0
the regulation term lambda/alpha is 1436.0663227993878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08512077566419306
the lambda is 200.0
the regulation term lambda/alpha is 2349.602649170079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09822091605552884
the lambda is 200.0
the regulation term lambda/alpha is 2036.2261729154586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.5636426027656882
the lambda is 200.0
the regulation term lambda/alpha is 78.0139945342762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08242440822185203
the lambda is 200.0
the regulation term lambda/alpha is 2426.465707362844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 247105724.712331
the lambda is 200.0
the regulation term lambda/alpha is 8.093701602131262e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.26269070657904325
the lambda is 200.0
the regulation term lambda/alpha is 761.3516389846867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 22113.018991964
the lambda is 200.0
the regulation term lambda/alpha is 0.009044445720988219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09447740703047558
the lambda is 200.0
the regulation term lambda/alpha is 2116.9082247937436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16885660459443835
the lambda is 200.0
the regulation term lambda/alpha is 1184.4369397357136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06022605394392544
the lambda is 200.0
the regulation term lambda/alpha is 3320.821918470927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 43.662269197872526
the lambda is 200.0
the regulation term lambda/alpha is 4.580613964281663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2508.3908221537226
the lambda is 200.0
the regulation term lambda/alpha is 0.07973239187196457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10016284823716627
the lambda is 200.0
the regulation term lambda/alpha is 1996.7483305430637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.0953330501910394
the lambda is 200.0
the regulation term lambda/alpha is 95.45021970696507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6926861832527041
the lambda is 200.0
the regulation term lambda/alpha is 288.73103699115717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07531209690075462
the lambda is 200.0
the regulation term lambda/alpha is 2655.615873550269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2598324696243661
the lambda is 200.0
the regulation term lambda/alpha is 769.7267408077806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05868067425276146
the lambda is 200.0
the regulation term lambda/alpha is 3408.2771295114794
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499665583.005462
the lambda is 200.0
the regulation term lambda/alpha is 4.002677126509507e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12303456621689285
the lambda is 200.0
the regulation term lambda/alpha is 1625.559435447009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1070.2951699312555
the lambda is 200.0
the regulation term lambda/alpha is 0.18686433950070605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 62.016129878388085
the lambda is 200.0
the regulation term lambda/alpha is 3.2249674462465565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05624753748823451
the lambda is 200.0
the regulation term lambda/alpha is 3555.711217434802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 16912215.386223577
the lambda is 200.0
the regulation term lambda/alpha is 1.1825771812421265e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.4487203748775535
the lambda is 200.0
the regulation term lambda/alpha is 445.7118758081263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31367975295919354
the lambda is 200.0
the regulation term lambda/alpha is 637.5929530460256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06620864572796768
the lambda is 200.0
the regulation term lambda/alpha is 3020.7535254797776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10259002313009076
the lambda is 200.0
the regulation term lambda/alpha is 1949.5073097545471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7577667707817637
the lambda is 200.0
the regulation term lambda/alpha is 263.9334524970875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06235443604366795
the lambda is 200.0
the regulation term lambda/alpha is 3207.4702730040945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4779742243434641
the lambda is 200.0
the regulation term lambda/alpha is 418.4326053872801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17144200587959596
the lambda is 200.0
the regulation term lambda/alpha is 1166.575244928366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5555559867089557
the lambda is 200.0
the regulation term lambda/alpha is 128.57139293529008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0837966777311347
the lambda is 200.0
the regulation term lambda/alpha is 2386.729467267291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 5171.575073606101
the lambda is 200.0
the regulation term lambda/alpha is 0.038672937577708115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1303253900156085
the lambda is 200.0
the regulation term lambda/alpha is 176.94019949179255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 39200.684259983354
the lambda is 200.0
the regulation term lambda/alpha is 0.005101951758637106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07143828982927848
the lambda is 200.0
the regulation term lambda/alpha is 2799.6190905179174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1590533165593807
the lambda is 200.0
the regulation term lambda/alpha is 1257.4399850714985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.7511021946156773
the lambda is 200.0
the regulation term lambda/alpha is 72.69813545691986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26782826425216566
the lambda is 200.0
the regulation term lambda/alpha is 746.7471760624039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09331542704178084
the lambda is 200.0
the regulation term lambda/alpha is 2143.268335582416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 495824574.0111473
the lambda is 200.0
the regulation term lambda/alpha is 4.033684703886894e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07122073778698941
the lambda is 200.0
the regulation term lambda/alpha is 2808.1708532446005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 55.451093010178575
the lambda is 200.0
the regulation term lambda/alpha is 3.606781925169412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 6078.969311980626
the lambda is 200.0
the regulation term lambda/alpha is 0.0329003141380947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06948072131545512
the lambda is 200.0
the regulation term lambda/alpha is 2878.496311112886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 12.21833442123735
the lambda is 200.0
the regulation term lambda/alpha is 16.368843174923185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060211444085108604
the lambda is 200.0
the regulation term lambda/alpha is 3321.627691196061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09002412347451494
the lambda is 200.0
the regulation term lambda/alpha is 2221.626740488268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05532669793424838
the lambda is 200.0
the regulation term lambda/alpha is 3614.8913177085856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 198930167.40307716
the lambda is 200.0
the regulation term lambda/alpha is 1.005377930410902e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1219082922312973
the lambda is 200.0
the regulation term lambda/alpha is 1640.5774893519044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16894562437413393
the lambda is 200.0
the regulation term lambda/alpha is 1183.8128435756078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05846238077348482
the lambda is 200.0
the regulation term lambda/alpha is 3421.003341873968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 439.38269886213993
the lambda is 200.0
the regulation term lambda/alpha is 0.4551840582661442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16785364708162934
the lambda is 200.0
the regulation term lambda/alpha is 1191.5141760532465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.304880645466114
the lambda is 200.0
the regulation term lambda/alpha is 27.378955209094766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07098615856931009
the lambda is 200.0
the regulation term lambda/alpha is 2817.45066969249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29288469515223386
the lambda is 200.0
the regulation term lambda/alpha is 682.8625848682369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 37637.65136095972
the lambda is 200.0
the regulation term lambda/alpha is 0.005313827849722136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 120.52998973494881
the lambda is 200.0
the regulation term lambda/alpha is 1.659338065487349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09604668183810997
the lambda is 200.0
the regulation term lambda/alpha is 2082.3207649912047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 2628.2039767757933
the lambda is 200.0
the regulation term lambda/alpha is 0.07609759431433262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08350856151212274
the lambda is 200.0
the regulation term lambda/alpha is 2394.964017802731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499988235.18419826
the lambda is 200.0
the regulation term lambda/alpha is 4.0000941207410403e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 74.41865979835295
the lambda is 200.0
the regulation term lambda/alpha is 2.6874980084554876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07206259052256252
the lambda is 200.0
the regulation term lambda/alpha is 2775.3651173195167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16330669068284054
the lambda is 200.0
the regulation term lambda/alpha is 1224.6895651594698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 27.054784207490975
the lambda is 200.0
the regulation term lambda/alpha is 7.3924078812139875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23958692508052323
the lambda is 200.0
the regulation term lambda/alpha is 834.770094122547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07810102513048446
the lambda is 200.0
the regulation term lambda/alpha is 2560.785849684524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 2113191.3251945716
the lambda is 200.0
the regulation term lambda/alpha is 9.46435836715282e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08396147697042658
the lambda is 200.0
the regulation term lambda/alpha is 2382.0448045529884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06964275900638388
the lambda is 200.0
the regulation term lambda/alpha is 2871.7989185590245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08342941342777005
the lambda is 200.0
the regulation term lambda/alpha is 2397.23607997259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061589146581616384
the lambda is 200.0
the regulation term lambda/alpha is 3247.325399045188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 22250.602373970658
the lambda is 200.0
the regulation term lambda/alpha is 0.00898852069883579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.094740324014332
the lambda is 200.0
the regulation term lambda/alpha is 64.62577762924246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07478372540782142
the lambda is 200.0
the regulation term lambda/alpha is 2674.3786687455204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13363816573730286
the lambda is 200.0
the regulation term lambda/alpha is 1496.5784579320468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6316646066893519
the lambda is 200.0
the regulation term lambda/alpha is 316.62372385913744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 473683583.48978555
the lambda is 200.0
the regulation term lambda/alpha is 4.222227811370051e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07455165171259136
the lambda is 200.0
the regulation term lambda/alpha is 2682.7038087771984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12081571499360472
the lambda is 200.0
the regulation term lambda/alpha is 1655.4137846271642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2155827604402981
the lambda is 200.0
the regulation term lambda/alpha is 927.7179659056576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06626286482660712
the lambda is 200.0
the regulation term lambda/alpha is 3018.2818162684116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13638208943653674
the lambda is 200.0
the regulation term lambda/alpha is 1466.4682204701583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 47.64914180652394
the lambda is 200.0
the regulation term lambda/alpha is 4.197347369068812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05938052907094566
the lambda is 200.0
the regulation term lambda/alpha is 3368.1074104450536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 22242.256945412122
the lambda is 200.0
the regulation term lambda/alpha is 0.008991893245853979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 480722890.8343199
the lambda is 200.0
the regulation term lambda/alpha is 4.160401008840862e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.217196821060656
the lambda is 200.0
the regulation term lambda/alpha is 920.8237902531112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 464689207.3272984
the lambda is 200.0
the regulation term lambda/alpha is 4.3039519069168383e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11869575251742319
the lambda is 200.0
the regulation term lambda/alpha is 1684.9802605248428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09778449804880486
the lambda is 200.0
the regulation term lambda/alpha is 2045.3139709341121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1309299989910181
the lambda is 200.0
the regulation term lambda/alpha is 1527.5338084568393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2147526.603036865
the lambda is 200.0
the regulation term lambda/alpha is 9.313039462103778e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999877.6173303
the lambda is 200.0
the regulation term lambda/alpha is 4.0000009790615973e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07473396015040827
the lambda is 200.0
the regulation term lambda/alpha is 2676.159534400204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 36.762074660612676
the lambda is 200.0
the regulation term lambda/alpha is 5.440389364484981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06408035168529133
the lambda is 200.0
the regulation term lambda/alpha is 3121.08149752722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09947911601389176
the lambda is 200.0
the regulation term lambda/alpha is 2010.4722278801814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 219.65565497631974
the lambda is 200.0
the regulation term lambda/alpha is 0.9105160530538641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33882716505156146
the lambda is 200.0
the regulation term lambda/alpha is 590.2714440548613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05859788960447073
the lambda is 200.0
the regulation term lambda/alpha is 3413.0922009304068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1472113015487129
the lambda is 200.0
the regulation term lambda/alpha is 174.33579997861239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08245156243620869
the lambda is 200.0
the regulation term lambda/alpha is 2425.666586424441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.329263653615601
the lambda is 200.0
the regulation term lambda/alpha is 607.4159653026571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20724852295975268
the lambda is 200.0
the regulation term lambda/alpha is 965.0249716802067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5565911448560052
the lambda is 200.0
the regulation term lambda/alpha is 359.3301867059737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11824997435026632
the lambda is 200.0
the regulation term lambda/alpha is 1691.3322907587553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12413682375723042
the lambda is 200.0
the regulation term lambda/alpha is 1611.1254819209187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06110325708700008
the lambda is 200.0
the regulation term lambda/alpha is 3273.147938991793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09031187349913114
the lambda is 200.0
the regulation term lambda/alpha is 2214.548234368365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.40420734963477045
the lambda is 200.0
the regulation term lambda/alpha is 494.7955552532975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0601300884271337
the lambda is 200.0
the regulation term lambda/alpha is 3326.12183403592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 267.5407921828124
the lambda is 200.0
the regulation term lambda/alpha is 0.7475495544744394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 7846.056313008577
the lambda is 200.0
the regulation term lambda/alpha is 0.025490512943222788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.708784441613501
the lambda is 200.0
the regulation term lambda/alpha is 25.944427622124383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 62.64403132979132
the lambda is 200.0
the regulation term lambda/alpha is 3.192642551164918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07884771596867853
the lambda is 200.0
the regulation term lambda/alpha is 2536.535111295399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12553070963591997
the lambda is 200.0
the regulation term lambda/alpha is 1593.2356359656158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09243496933486743
the lambda is 200.0
the regulation term lambda/alpha is 2163.683305562129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.123798435633543
the lambda is 200.0
the regulation term lambda/alpha is 1615.5292995141072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.766943853522912
the lambda is 200.0
the regulation term lambda/alpha is 113.18978789351021
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1515261750554482
the lambda is 200.0
the regulation term lambda/alpha is 1319.9039699036402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 54230628.13577706
the lambda is 200.0
the regulation term lambda/alpha is 3.687952857548701e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.304038261370342
the lambda is 200.0
the regulation term lambda/alpha is 31.725695769575637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15269287599801468
the lambda is 200.0
the regulation term lambda/alpha is 1309.8188025654872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06295714546876482
the lambda is 200.0
the regulation term lambda/alpha is 3176.764106930909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 492596785.4671278
the lambda is 200.0
the regulation term lambda/alpha is 4.0601158168407597e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.19084488641184905
the lambda is 200.0
the regulation term lambda/alpha is 1047.9714901472075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12085108489587372
the lambda is 200.0
the regulation term lambda/alpha is 1654.929288986703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06081344884975327
the lambda is 200.0
the regulation term lambda/alpha is 3288.746219510151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12174674437789082
the lambda is 200.0
the regulation term lambda/alpha is 1642.7543998976942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.058500922314610224
the lambda is 200.0
the regulation term lambda/alpha is 3418.749518587527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 20.36672599330828
the lambda is 200.0
the regulation term lambda/alpha is 9.819938661997627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1499681263259048
the lambda is 200.0
the regulation term lambda/alpha is 1333.616715096966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8112307584124665
the lambda is 200.0
the regulation term lambda/alpha is 246.53897540989308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05539361017919784
the lambda is 200.0
the regulation term lambda/alpha is 3610.5247401821575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6865408327084483
the lambda is 200.0
the regulation term lambda/alpha is 291.31552046363646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07322310554784761
the lambda is 200.0
the regulation term lambda/alpha is 2731.378278804497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06275754571047922
the lambda is 200.0
the regulation term lambda/alpha is 3186.8677739990735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5224169717452192
the lambda is 200.0
the regulation term lambda/alpha is 382.83595445199137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9324770539049934
the lambda is 200.0
the regulation term lambda/alpha is 214.48248958239486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06614935765895862
the lambda is 200.0
the regulation term lambda/alpha is 3023.4609537877195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  24  iterations
the alpha is 7900163.379549677
the lambda is 200.0
the regulation term lambda/alpha is 2.5315932138532605e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08242959081047808
the lambda is 200.0
the regulation term lambda/alpha is 2426.3131483915713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06309776184803424
the lambda is 200.0
the regulation term lambda/alpha is 3169.684536223068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09420131659916472
the lambda is 200.0
the regulation term lambda/alpha is 2123.1125765579095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 449.46692752251397
the lambda is 200.0
the regulation term lambda/alpha is 0.4449715602044645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 31.621068119204654
the lambda is 200.0
the regulation term lambda/alpha is 6.3248970352944065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7333882520783942
the lambda is 200.0
the regulation term lambda/alpha is 272.7068499300441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.228491899448958
the lambda is 200.0
the regulation term lambda/alpha is 19.553224655804307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 491619806.270803
the lambda is 200.0
the regulation term lambda/alpha is 4.068184345889278e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.077796715171102
the lambda is 200.0
the regulation term lambda/alpha is 185.5637498099534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 12.332266122399947
the lambda is 200.0
the regulation term lambda/alpha is 16.21761953682837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5402656849667986
the lambda is 200.0
the regulation term lambda/alpha is 370.18823435416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10415610200434686
the lambda is 200.0
the regulation term lambda/alpha is 1920.1947476073287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4348898157624553
the lambda is 200.0
the regulation term lambda/alpha is 459.88660288435824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07366925696930113
the lambda is 200.0
the regulation term lambda/alpha is 2714.8366663090196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08199323306547551
the lambda is 200.0
the regulation term lambda/alpha is 2439.2256839084566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.212634790176956
the lambda is 200.0
the regulation term lambda/alpha is 32.192460486527864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08620815507359213
the lambda is 200.0
the regulation term lambda/alpha is 2319.966131153935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07543713367754618
the lambda is 200.0
the regulation term lambda/alpha is 2651.2141998249053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07205506941520606
the lambda is 200.0
the regulation term lambda/alpha is 2775.6548099000684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11965683007431077
the lambda is 200.0
the regulation term lambda/alpha is 1671.4465850030751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11378567703412486
the lambda is 200.0
the regulation term lambda/alpha is 1757.6904687223425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1098066399902654
the lambda is 200.0
the regulation term lambda/alpha is 1821.3834793390495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 8215.290704803147
the lambda is 200.0
the regulation term lambda/alpha is 0.024344847575882875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06837290949914356
the lambda is 200.0
the regulation term lambda/alpha is 2925.13513707509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 39.05780361861161
the lambda is 200.0
the regulation term lambda/alpha is 5.120615638117887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6231212725259768
the lambda is 200.0
the regulation term lambda/alpha is 320.96480864671867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1306435966618536
the lambda is 200.0
the regulation term lambda/alpha is 1530.8825316380596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06052138350301781
the lambda is 200.0
the regulation term lambda/alpha is 3304.617119171231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18420473342636406
the lambda is 200.0
the regulation term lambda/alpha is 1085.7484293689452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.822686567322894
the lambda is 200.0
the regulation term lambda/alpha is 29.313965697602992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.345190304398163
the lambda is 200.0
the regulation term lambda/alpha is 59.787331003873106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2512269360817185
the lambda is 200.0
the regulation term lambda/alpha is 796.0929791976785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11306833213560502
the lambda is 200.0
the regulation term lambda/alpha is 1768.8418695354608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 21.66434847878386
the lambda is 200.0
the regulation term lambda/alpha is 9.231756966790957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  23  iterations
the alpha is 3094273.98988919
the lambda is 200.0
the regulation term lambda/alpha is 6.463551729857066e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05582642682218405
the lambda is 200.0
the regulation term lambda/alpha is 3582.532706902977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07203108492986195
the lambda is 200.0
the regulation term lambda/alpha is 2776.5790310494954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2963.565782213015
the lambda is 200.0
the regulation term lambda/alpha is 0.06748626981738595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20886749535854912
the lambda is 200.0
the regulation term lambda/alpha is 957.5448762703509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24662585405257054
the lambda is 200.0
the regulation term lambda/alpha is 810.9449869654305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 471268469.3545943
the lambda is 200.0
the regulation term lambda/alpha is 4.243865503539872e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27876323408892895
the lambda is 200.0
the regulation term lambda/alpha is 717.4547269608643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 50.31485651365854
the lambda is 200.0
the regulation term lambda/alpha is 3.974969101734549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 283.6882371825855
the lambda is 200.0
the regulation term lambda/alpha is 0.7049992695723839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21499288424571744
the lambda is 200.0
the regulation term lambda/alpha is 930.2633466297334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25323654869017087
the lambda is 200.0
the regulation term lambda/alpha is 789.7754136773339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 483976609.5516547
the lambda is 200.0
the regulation term lambda/alpha is 4.1324311144969505e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.372163672234763
the lambda is 200.0
the regulation term lambda/alpha is 537.3979647154783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25864807496796133
the lambda is 200.0
the regulation term lambda/alpha is 773.2514538326795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.40020393553024
the lambda is 200.0
the regulation term lambda/alpha is 37.035638355084124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10572112140100809
the lambda is 200.0
the regulation term lambda/alpha is 1891.7695664746602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3123161761676236
the lambda is 200.0
the regulation term lambda/alpha is 152.40229727569385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07404865794452264
the lambda is 200.0
the regulation term lambda/alpha is 2700.9267359016862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33146648877023244
the lambda is 200.0
the regulation term lambda/alpha is 603.3792457934925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 495120113.0427662
the lambda is 200.0
the regulation term lambda/alpha is 4.039423863653968e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5907828340789247
the lambda is 200.0
the regulation term lambda/alpha is 338.5338714382505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.476961706198515
the lambda is 200.0
the regulation term lambda/alpha is 26.748832996455896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.6364532885377305
the lambda is 200.0
the regulation term lambda/alpha is 75.85948928794677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11924518024648803
the lambda is 200.0
the regulation term lambda/alpha is 1677.2166353942873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 103.95385720617921
the lambda is 200.0
the regulation term lambda/alpha is 1.9239305339418578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07092434728380874
the lambda is 200.0
the regulation term lambda/alpha is 2819.9061064275434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061752374977226625
the lambda is 200.0
the regulation term lambda/alpha is 3238.7418309620816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.947560237833205
the lambda is 200.0
the regulation term lambda/alpha is 211.0683754072901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 103.67290589137356
the lambda is 200.0
the regulation term lambda/alpha is 1.9291443437454727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 497253.0978926916
the lambda is 200.0
the regulation term lambda/alpha is 0.0004022096611314837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 53.73444598518214
the lambda is 200.0
the regulation term lambda/alpha is 3.722007295937362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 260745716.58408934
the lambda is 200.0
the regulation term lambda/alpha is 7.670308169204417e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29426813393257967
the lambda is 200.0
the regulation term lambda/alpha is 679.652252274867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07825224903624972
the lambda is 200.0
the regulation term lambda/alpha is 2555.837084086256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3724850792723013
the lambda is 200.0
the regulation term lambda/alpha is 145.72107414533136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.49312874298944825
the lambda is 200.0
the regulation term lambda/alpha is 405.5736008969153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36675838048448817
the lambda is 200.0
the regulation term lambda/alpha is 545.3181457934235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06686020533628315
the lambda is 200.0
the regulation term lambda/alpha is 2991.3159703005826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07297562226805135
the lambda is 200.0
the regulation term lambda/alpha is 2740.6412413362837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2993329244178182
the lambda is 200.0
the regulation term lambda/alpha is 668.1523604160355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0772251570614916
the lambda is 200.0
the regulation term lambda/alpha is 2589.8296307866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.8427544036814227
the lambda is 200.0
the regulation term lambda/alpha is 70.35430135680946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 3469.348594362838
the lambda is 200.0
the regulation term lambda/alpha is 0.057647709522464674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.23664785125538038
the lambda is 200.0
the regulation term lambda/alpha is 845.1376124441056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39562230224056405
the lambda is 200.0
the regulation term lambda/alpha is 505.5326731261652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07435392425929814
the lambda is 200.0
the regulation term lambda/alpha is 2689.837853110887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.48186795879492794
the lambda is 200.0
the regulation term lambda/alpha is 415.05146036305655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0942898327516527
the lambda is 200.0
the regulation term lambda/alpha is 2121.119469230307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3239201672352405
the lambda is 200.0
the regulation term lambda/alpha is 617.4360852770061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0808899193193631
the lambda is 200.0
the regulation term lambda/alpha is 2472.4959758010887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 2750.558424033266
the lambda is 200.0
the regulation term lambda/alpha is 0.0727125074866547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06126846911007765
the lambda is 200.0
the regulation term lambda/alpha is 3264.321810304598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8019271549148933
the lambda is 200.0
the regulation term lambda/alpha is 249.39921135508317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0631161654360834
the lambda is 200.0
the regulation term lambda/alpha is 3168.7603107406203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05981502866728132
the lambda is 200.0
the regulation term lambda/alpha is 3343.6412964456126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 9276239.755504912
the lambda is 200.0
the regulation term lambda/alpha is 2.1560460409759414e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06705098804681338
the lambda is 200.0
the regulation term lambda/alpha is 2982.8046659113334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0930836496120813
the lambda is 200.0
the regulation term lambda/alpha is 2148.6050539862163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26975047013613823
the lambda is 200.0
the regulation term lambda/alpha is 741.4259552506566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11621084336233377
the lambda is 200.0
the regulation term lambda/alpha is 1721.0097974800858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.590605391666948
the lambda is 200.0
the regulation term lambda/alpha is 13.707450419721782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3394683451365354
the lambda is 200.0
the regulation term lambda/alpha is 589.1565527842051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 41120.362161968296
the lambda is 200.0
the regulation term lambda/alpha is 0.004863770392201883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 7348.903220782759
the lambda is 200.0
the regulation term lambda/alpha is 0.02721494541313299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5728653223708579
the lambda is 200.0
the regulation term lambda/alpha is 349.12219712005066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.255157238539221
the lambda is 200.0
the regulation term lambda/alpha is 159.34258582037444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 104.26158082056736
the lambda is 200.0
the regulation term lambda/alpha is 1.9182521349277932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2192773339356598
the lambda is 200.0
the regulation term lambda/alpha is 912.086974108705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15554872425378105
the lambda is 200.0
the regulation term lambda/alpha is 1285.7707509943684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0709387043126111
the lambda is 200.0
the regulation term lambda/alpha is 2819.335395789645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3609069427144927
the lambda is 200.0
the regulation term lambda/alpha is 554.1594697395903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06437461427505246
the lambda is 200.0
the regulation term lambda/alpha is 3106.814732053585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08939934232501381
the lambda is 200.0
the regulation term lambda/alpha is 2237.152923037111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2433858128702842
the lambda is 200.0
the regulation term lambda/alpha is 160.85111952364292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 48.253800260765814
the lambda is 200.0
the regulation term lambda/alpha is 4.14475127180016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 108251222.6890402
the lambda is 200.0
the regulation term lambda/alpha is 1.8475541895218596e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21147262229411984
the lambda is 200.0
the regulation term lambda/alpha is 945.7489004029868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 35726272.30184367
the lambda is 200.0
the regulation term lambda/alpha is 5.598121133664396e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14147207238669351
the lambda is 200.0
the regulation term lambda/alpha is 1413.7065826909557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6665769818812753
the lambda is 200.0
the regulation term lambda/alpha is 300.04036358342506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 7173.9922691235115
the lambda is 200.0
the regulation term lambda/alpha is 0.02787848000070889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.8847457719266478
the lambda is 200.0
the regulation term lambda/alpha is 226.05363749235474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06662551351044954
the lambda is 200.0
the regulation term lambda/alpha is 3001.853035903911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.405733955341941
the lambda is 200.0
the regulation term lambda/alpha is 27.00610111111742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4843530786367274
the lambda is 200.0
the regulation term lambda/alpha is 134.73883193861514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.644998068771685
the lambda is 200.0
the regulation term lambda/alpha is 18.788166865593222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1138307341236181
the lambda is 200.0
the regulation term lambda/alpha is 1756.9947302878995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 48.68215498484622
the lambda is 200.0
the regulation term lambda/alpha is 4.108281567696746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 70451836.1686998
the lambda is 200.0
the regulation term lambda/alpha is 2.8388188424371484e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06179518396261516
the lambda is 200.0
the regulation term lambda/alpha is 3236.49817307763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9314305012381866
the lambda is 200.0
the regulation term lambda/alpha is 214.7234814987616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.055355309387751114
the lambda is 200.0
the regulation term lambda/alpha is 3613.022891788868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07461185544793791
the lambda is 200.0
the regulation term lambda/alpha is 2680.5391555977917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 49.176652009262256
the lambda is 200.0
the regulation term lambda/alpha is 4.066970642131772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12842581605860187
the lambda is 200.0
the regulation term lambda/alpha is 1557.3192846891327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 492972848.1430981
the lambda is 200.0
the regulation term lambda/alpha is 4.0570185711717907e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05965633150072203
the lambda is 200.0
the regulation term lambda/alpha is 3352.5360170291287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07632382018861825
the lambda is 200.0
the regulation term lambda/alpha is 2620.4139088654383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08610229558488075
the lambda is 200.0
the regulation term lambda/alpha is 2322.818441034913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.19356322218365643
the lambda is 200.0
the regulation term lambda/alpha is 1033.2541365230852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30088647185333106
the lambda is 200.0
the regulation term lambda/alpha is 664.7025330453913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 12223.671657431325
the lambda is 200.0
the regulation term lambda/alpha is 0.016361696027593388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06458105855124101
the lambda is 200.0
the regulation term lambda/alpha is 3096.8832733101235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0592702570213968
the lambda is 200.0
the regulation term lambda/alpha is 3374.3737593005408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06063185502085999
the lambda is 200.0
the regulation term lambda/alpha is 3298.596091628589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12475857727452223
the lambda is 200.0
the regulation term lambda/alpha is 1603.0961908127122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 49.723787999231476
the lambda is 200.0
the regulation term lambda/alpha is 4.022219707056332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  26  iterations
the alpha is 863480.557300445
the lambda is 200.0
the regulation term lambda/alpha is 0.00023162073344798047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 43448.98193452567
the lambda is 200.0
the regulation term lambda/alpha is 0.0046030997987797475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27913981368207513
the lambda is 200.0
the regulation term lambda/alpha is 716.4868291693746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08716987968431764
the lambda is 200.0
the regulation term lambda/alpha is 2294.370494995431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.67357004612455
the lambda is 200.0
the regulation term lambda/alpha is 23.05855592754016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 8301927.994622217
the lambda is 200.0
the regulation term lambda/alpha is 2.4090789528595654e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12430713563130777
the lambda is 200.0
the regulation term lambda/alpha is 1608.9180961678305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 11.97385837325529
the lambda is 200.0
the regulation term lambda/alpha is 16.7030537497185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 42.85582103751543
the lambda is 200.0
the regulation term lambda/alpha is 4.666810602576546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 47.21525823576322
the lambda is 200.0
the regulation term lambda/alpha is 4.235918799836403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0716597868036474
the lambda is 200.0
the regulation term lambda/alpha is 2790.9656017818384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06253301392575335
the lambda is 200.0
the regulation term lambda/alpha is 3198.310579391933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 400069.0254703161
the lambda is 200.0
the regulation term lambda/alpha is 0.0004999137330486471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3522257443669195
the lambda is 200.0
the regulation term lambda/alpha is 567.8176657969004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 53479.69371347786
the lambda is 200.0
the regulation term lambda/alpha is 0.0037397371995344163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20020497598062093
the lambda is 200.0
the regulation term lambda/alpha is 998.9761694003012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06845114724588365
the lambda is 200.0
the regulation term lambda/alpha is 2921.791789428732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 284267066.58949685
the lambda is 200.0
the regulation term lambda/alpha is 7.035637381407081e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.43655063486778206
the lambda is 200.0
the regulation term lambda/alpha is 458.13700410852437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07279529184913221
the lambda is 200.0
the regulation term lambda/alpha is 2747.4304301780776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13838509608545943
the lambda is 200.0
the regulation term lambda/alpha is 1445.2423393664474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07436249670904418
the lambda is 200.0
the regulation term lambda/alpha is 2689.5277707327896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23645408358162798
the lambda is 200.0
the regulation term lambda/alpha is 845.8301796718879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09897411511116715
the lambda is 200.0
the regulation term lambda/alpha is 2020.7303674840757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1096.7890531090584
the lambda is 200.0
the regulation term lambda/alpha is 0.18235047061516682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.299877031745916
the lambda is 200.0
the regulation term lambda/alpha is 46.51295805052181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17539471211150143
the lambda is 200.0
the regulation term lambda/alpha is 1140.2852320476832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08524472848704423
the lambda is 200.0
the regulation term lambda/alpha is 2346.186134317932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.45350747893007964
the lambda is 200.0
the regulation term lambda/alpha is 441.0070600640202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 7.622502964665181
the lambda is 200.0
the regulation term lambda/alpha is 26.238100651074657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1728875759657254
the lambda is 200.0
the regulation term lambda/alpha is 1156.8211242643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.801972680467255
the lambda is 200.0
the regulation term lambda/alpha is 20.404056052772646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07097741087679243
the lambda is 200.0
the regulation term lambda/alpha is 2817.7979096359827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 107317307.90042962
the lambda is 200.0
the regulation term lambda/alpha is 1.8636322873991824e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14145341554602053
the lambda is 200.0
the regulation term lambda/alpha is 1413.893041945897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.516562589957785
the lambda is 200.0
the regulation term lambda/alpha is 56.87372110797577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20445341089878152
the lambda is 200.0
the regulation term lambda/alpha is 978.2179672170582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23860210908859258
the lambda is 200.0
the regulation term lambda/alpha is 838.215557959466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 130788.21799921914
the lambda is 200.0
the regulation term lambda/alpha is 0.0015291897317631017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0737882208492917
the lambda is 200.0
the regulation term lambda/alpha is 2710.4597142745697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09583917188302964
the lambda is 200.0
the regulation term lambda/alpha is 2086.829383752368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06259249688906325
the lambda is 200.0
the regulation term lambda/alpha is 3195.2711577311416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07013930668745882
the lambda is 200.0
the regulation term lambda/alpha is 2851.468163082952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10463792458055547
the lambda is 200.0
the regulation term lambda/alpha is 1911.3528942943633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1115.1694728620414
the lambda is 200.0
the regulation term lambda/alpha is 0.17934493802695958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.133293400407921
the lambda is 200.0
the regulation term lambda/alpha is 1500.4493799988234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 40.80216763697412
the lambda is 200.0
the regulation term lambda/alpha is 4.9017003650258015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14809432113630908
the lambda is 200.0
the regulation term lambda/alpha is 1350.4906769241736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07379328724592829
the lambda is 200.0
the regulation term lambda/alpha is 2710.2736233103024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21969259125329513
the lambda is 200.0
the regulation term lambda/alpha is 910.3629706356802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 1.3415724714435633
the lambda is 200.0
the regulation term lambda/alpha is 149.07878944832203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08595430187914212
the lambda is 200.0
the regulation term lambda/alpha is 2326.8178046657194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07267153105463406
the lambda is 200.0
the regulation term lambda/alpha is 2752.1093487027415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 18.30104394751856
the lambda is 200.0
the regulation term lambda/alpha is 10.928338327230671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.916865699965148
the lambda is 200.0
the regulation term lambda/alpha is 33.801679832141204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0840245896425304
the lambda is 200.0
the regulation term lambda/alpha is 2380.25559959137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3673754124441501
the lambda is 200.0
the regulation term lambda/alpha is 544.4022469261054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0807388052179285
the lambda is 200.0
the regulation term lambda/alpha is 2477.1236019676553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06048827651211915
the lambda is 200.0
the regulation term lambda/alpha is 3306.4258321185416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.5995300190388537
the lambda is 200.0
the regulation term lambda/alpha is 76.93698419914678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4805937300511346
the lambda is 200.0
the regulation term lambda/alpha is 416.1519127157989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 122146792.23031144
the lambda is 200.0
the regulation term lambda/alpha is 1.6373741491540278e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06002426445582965
the lambda is 200.0
the regulation term lambda/alpha is 3331.9858529407716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32235045998379214
the lambda is 200.0
the regulation term lambda/alpha is 620.4427318330988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06048587395641328
the lambda is 200.0
the regulation term lambda/alpha is 3306.5571664571135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 5912.681217490181
the lambda is 200.0
the regulation term lambda/alpha is 0.033825601726740165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 43.41471884144973
the lambda is 200.0
the regulation term lambda/alpha is 4.606732586024539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08556262445686551
the lambda is 200.0
the regulation term lambda/alpha is 2337.4692077242858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2855457201113194
the lambda is 200.0
the regulation term lambda/alpha is 700.4132295242612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 495983217.9561519
the lambda is 200.0
the regulation term lambda/alpha is 4.0323944996397296e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09427087152644244
the lambda is 200.0
the regulation term lambda/alpha is 2121.546101797745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06803000173148165
the lambda is 200.0
the regulation term lambda/alpha is 2939.8793901169015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.62649965468873
the lambda is 200.0
the regulation term lambda/alpha is 13.673811555855552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1407699323129396
the lambda is 200.0
the regulation term lambda/alpha is 1420.7579467708244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16121596663514368
the lambda is 200.0
the regulation term lambda/alpha is 1240.5719121644477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.056288777475252
the lambda is 200.0
the regulation term lambda/alpha is 49.30615421431746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11277592478798466
the lambda is 200.0
the regulation term lambda/alpha is 1773.4281530033468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.2039680622985465
the lambda is 200.0
the regulation term lambda/alpha is 62.4225947672271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.976430161476478
the lambda is 200.0
the regulation term lambda/alpha is 67.19458853379871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06224279289044342
the lambda is 200.0
the regulation term lambda/alpha is 3213.2234225419443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.056304884021654435
the lambda is 200.0
the regulation term lambda/alpha is 3552.0897249887153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3148657353712501
the lambda is 200.0
the regulation term lambda/alpha is 635.1913769346326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07217758306135583
the lambda is 200.0
the regulation term lambda/alpha is 2770.9434358585613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1266.42217677177
the lambda is 200.0
the regulation term lambda/alpha is 0.15792521930547596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2165826247212531
the lambda is 200.0
the regulation term lambda/alpha is 923.4351105376282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23361494183385156
the lambda is 200.0
the regulation term lambda/alpha is 856.1096239393852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05216151207535021
the lambda is 200.0
the regulation term lambda/alpha is 3834.2446766322428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10206968671165924
the lambda is 200.0
the regulation term lambda/alpha is 1959.4456144946153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06386807306222285
the lambda is 200.0
the regulation term lambda/alpha is 3131.4550511826455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5639618655206653
the lambda is 200.0
the regulation term lambda/alpha is 127.88035591482733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09502324509043321
the lambda is 200.0
the regulation term lambda/alpha is 2104.7481572499537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.7870364487956345
the lambda is 200.0
the regulation term lambda/alpha is 71.76081248827091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.060169076453797765
the lambda is 200.0
the regulation term lambda/alpha is 3323.96659193489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10879639564126212
the lambda is 200.0
the regulation term lambda/alpha is 1838.2961937403375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3072834980311046
the lambda is 200.0
the regulation term lambda/alpha is 152.9890037633148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06630633006950708
the lambda is 200.0
the regulation term lambda/alpha is 3016.30326682755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0625714934445254
the lambda is 200.0
the regulation term lambda/alpha is 3196.34371804336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 19.473528347817545
the lambda is 200.0
the regulation term lambda/alpha is 10.27035247171397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  26  iterations
the alpha is 1913457.6792911214
the lambda is 200.0
the regulation term lambda/alpha is 0.00010452282387248511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 479283202.08796436
the lambda is 200.0
the regulation term lambda/alpha is 4.172898176458381e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.34103768142911
the lambda is 200.0
the regulation term lambda/alpha is 21.410897463524787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05437109774636608
the lambda is 200.0
the regulation term lambda/alpha is 3678.42490385192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06540752865874654
the lambda is 200.0
the regulation term lambda/alpha is 3057.751975976167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 203.31031504861423
the lambda is 200.0
the regulation term lambda/alpha is 0.9837179188482262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05921807090291026
the lambda is 200.0
the regulation term lambda/alpha is 3377.347437202164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06276475057650906
the lambda is 200.0
the regulation term lambda/alpha is 3186.501948354017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 30.711840285666025
the lambda is 200.0
the regulation term lambda/alpha is 6.51214639499623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13773738244023992
the lambda is 200.0
the regulation term lambda/alpha is 1452.0386292862356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2907.430890116276
the lambda is 200.0
the regulation term lambda/alpha is 0.06878925331635363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5156915253024795
the lambda is 200.0
the regulation term lambda/alpha is 387.8287506910061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6698060241948018
the lambda is 200.0
the regulation term lambda/alpha is 298.5939104391115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06627349679643298
the lambda is 200.0
the regulation term lambda/alpha is 3017.7976063994943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07514845674232798
the lambda is 200.0
the regulation term lambda/alpha is 2661.398632386663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0699207500477281
the lambda is 200.0
the regulation term lambda/alpha is 2860.381215354232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8524712594174118
the lambda is 200.0
the regulation term lambda/alpha is 234.61201511553855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 98155.93559040682
the lambda is 200.0
the regulation term lambda/alpha is 0.0020375741802775584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 473522037.49112344
the lambda is 200.0
the regulation term lambda/alpha is 4.2236682596583304e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08782011010300353
the lambda is 200.0
the regulation term lambda/alpha is 2277.382706141242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06823812166978577
the lambda is 200.0
the regulation term lambda/alpha is 2930.913030810391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999643
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920002856e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061082179653526414
the lambda is 200.0
the regulation term lambda/alpha is 3274.2773937415236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08991800391534141
the lambda is 200.0
the regulation term lambda/alpha is 2224.2486631298193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06670483136199033
the lambda is 200.0
the regulation term lambda/alpha is 2998.283571315102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 7320.190774848162
the lambda is 200.0
the regulation term lambda/alpha is 0.027321692309876786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9576799216253974
the lambda is 200.0
the regulation term lambda/alpha is 208.83804231851826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 452216880.5294608
the lambda is 200.0
the regulation term lambda/alpha is 4.4226566634539976e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07571595811652586
the lambda is 200.0
the regulation term lambda/alpha is 2641.4510887150454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1002817855742553
the lambda is 200.0
the regulation term lambda/alpha is 1994.3801245133068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5287561412661603
the lambda is 200.0
the regulation term lambda/alpha is 130.82531255400497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7956528462693767
the lambda is 200.0
the regulation term lambda/alpha is 251.3659078048316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05993793395768614
the lambda is 200.0
the regulation term lambda/alpha is 3336.785017334636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23044804612142994
the lambda is 200.0
the regulation term lambda/alpha is 867.8745746215355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1676713459124117
the lambda is 200.0
the regulation term lambda/alpha is 1192.8096533827322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6695815648138709
the lambda is 200.0
the regulation term lambda/alpha is 298.6940060925896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499850044.66982144
the lambda is 200.0
the regulation term lambda/alpha is 4.0012000025349813e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.3222302759835087
the lambda is 200.0
the regulation term lambda/alpha is 60.20052295766652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08495305696626722
the lambda is 200.0
the regulation term lambda/alpha is 2354.2413556632237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06810552267323312
the lambda is 200.0
the regulation term lambda/alpha is 2936.6194127837466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17317052996835156
the lambda is 200.0
the regulation term lambda/alpha is 1154.9309229263881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06356707883165715
the lambda is 200.0
the regulation term lambda/alpha is 3146.2826934308905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6315900602257665
the lambda is 200.0
the regulation term lambda/alpha is 316.66109490150706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11223510926850183
the lambda is 200.0
the regulation term lambda/alpha is 1781.9735847678182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09361250762930992
the lambda is 200.0
the regulation term lambda/alpha is 2136.466643880185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.060611470992618106
the lambda is 200.0
the regulation term lambda/alpha is 3299.7054307485473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06134311635481617
the lambda is 200.0
the regulation term lambda/alpha is 3260.3495206075813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 5877.886226636027
the lambda is 200.0
the regulation term lambda/alpha is 0.03402583722932351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06945604797927298
the lambda is 200.0
the regulation term lambda/alpha is 2879.5188585979417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08229078491833955
the lambda is 200.0
the regulation term lambda/alpha is 2430.405788430236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08326745999795761
the lambda is 200.0
the regulation term lambda/alpha is 2401.8986529060167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24388993620293026
the lambda is 200.0
the regulation term lambda/alpha is 820.0420366406125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2227409992221342
the lambda is 200.0
the regulation term lambda/alpha is 897.9038466131009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15683099855524765
the lambda is 200.0
the regulation term lambda/alpha is 1275.258092101894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 78.81298961526649
the lambda is 200.0
the regulation term lambda/alpha is 2.5376527521201777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 6935.926422562321
the lambda is 200.0
the regulation term lambda/alpha is 0.02883536932419109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05835997059024461
the lambda is 200.0
the regulation term lambda/alpha is 3427.0065248016385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11948860514238288
the lambda is 200.0
the regulation term lambda/alpha is 1673.7997716324462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21210741737674588
the lambda is 200.0
the regulation term lambda/alpha is 942.9184630764673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06675872134248718
the lambda is 200.0
the regulation term lambda/alpha is 2995.8632516934413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13695490451545053
the lambda is 200.0
the regulation term lambda/alpha is 1460.3347043875822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056394774307436814
the lambda is 200.0
the regulation term lambda/alpha is 3546.4278819469605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13427452525059314
the lambda is 200.0
the regulation term lambda/alpha is 1489.4858099609369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10882764917639762
the lambda is 200.0
the regulation term lambda/alpha is 1837.7682648995024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2198476763177556
the lambda is 200.0
the regulation term lambda/alpha is 909.7207819059736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2622.8473912212257
the lambda is 200.0
the regulation term lambda/alpha is 0.07625300681595427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1570.5979634645662
the lambda is 200.0
the regulation term lambda/alpha is 0.12734003523016293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06176281171220465
the lambda is 200.0
the regulation term lambda/alpha is 3238.1945454804963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 77.40112022535577
the lambda is 200.0
the regulation term lambda/alpha is 2.5839419302678537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7493400821105891
the lambda is 200.0
the regulation term lambda/alpha is 114.3288272219195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 23.518792814241696
the lambda is 200.0
the regulation term lambda/alpha is 8.503837827887617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.940784339170015
the lambda is 200.0
the regulation term lambda/alpha is 103.05112008762956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1417.2605320955533
the lambda is 200.0
the regulation term lambda/alpha is 0.14111731433336477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12661138071896602
the lambda is 200.0
the regulation term lambda/alpha is 1579.636829361585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8177668592996639
the lambda is 200.0
the regulation term lambda/alpha is 110.02511074332962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07009496060674383
the lambda is 200.0
the regulation term lambda/alpha is 2853.272164914492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 78.3093866903857
the lambda is 200.0
the regulation term lambda/alpha is 2.553972243337141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3401880032230159
the lambda is 200.0
the regulation term lambda/alpha is 587.9102087820736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 75.60898968007605
the lambda is 200.0
the regulation term lambda/alpha is 2.64518810324353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 35.57696353107532
the lambda is 200.0
the regulation term lambda/alpha is 5.621615229340933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06237926225220463
the lambda is 200.0
the regulation term lambda/alpha is 3206.193737774312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1492016905073513
the lambda is 200.0
the regulation term lambda/alpha is 1340.4673855900166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08861067904002155
the lambda is 200.0
the regulation term lambda/alpha is 2257.0642970659187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05634947114390177
the lambda is 200.0
the regulation term lambda/alpha is 3549.279095969729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6326201152746586
the lambda is 200.0
the regulation term lambda/alpha is 316.1454958054376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20242154631591047
the lambda is 200.0
the regulation term lambda/alpha is 988.0371118589753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3505641994477815
the lambda is 200.0
the regulation term lambda/alpha is 570.508911962618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.424434295146281
the lambda is 200.0
the regulation term lambda/alpha is 45.20351906217822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07112007018533946
the lambda is 200.0
the regulation term lambda/alpha is 2812.145706251392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499887333.1597024
the lambda is 200.0
the regulation term lambda/alpha is 4.000901537869227e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15697371680702793
the lambda is 200.0
the regulation term lambda/alpha is 1274.0986457361232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0649640908587269
the lambda is 200.0
the regulation term lambda/alpha is 3078.6238575234856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 376406747.94508225
the lambda is 200.0
the regulation term lambda/alpha is 5.313401024074626e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056140182845522954
the lambda is 200.0
the regulation term lambda/alpha is 3562.5106628228505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06394319162894035
the lambda is 200.0
the regulation term lambda/alpha is 3127.7763105819236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05592981327292722
the lambda is 200.0
the regulation term lambda/alpha is 3575.9103829658206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1282487945677932
the lambda is 200.0
the regulation term lambda/alpha is 1559.468848607997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.768662338096739
the lambda is 200.0
the regulation term lambda/alpha is 29.54793576779861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 30.922998231156132
the lambda is 200.0
the regulation term lambda/alpha is 6.4676781502542715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31176348464364995
the lambda is 200.0
the regulation term lambda/alpha is 641.5119468805104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9924147065585154
the lambda is 200.0
the regulation term lambda/alpha is 201.52865397728513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1957509794063957
the lambda is 200.0
the regulation term lambda/alpha is 1021.706254581659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07248814905303244
the lambda is 200.0
the regulation term lambda/alpha is 2759.07169120403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06393000703466593
the lambda is 200.0
the regulation term lambda/alpha is 3128.4213670045483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21394173945754372
the lambda is 200.0
the regulation term lambda/alpha is 934.8339436105668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  29  iterations
the alpha is 41929338.930650726
the lambda is 200.0
the regulation term lambda/alpha is 4.769929722259422e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  26  iterations
the alpha is 8908698.01074942
the lambda is 200.0
the regulation term lambda/alpha is 2.2449969654227346e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 456.2180622143679
the lambda is 200.0
the regulation term lambda/alpha is 0.4383868517376323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06793646329454378
the lambda is 200.0
the regulation term lambda/alpha is 2943.927168137743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17516487829950186
the lambda is 200.0
the regulation term lambda/alpha is 1141.7814001390984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06659723261080792
the lambda is 200.0
the regulation term lambda/alpha is 3003.127790140974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06445775208802601
the lambda is 200.0
the regulation term lambda/alpha is 3102.8075525636114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 483595818.104349
the lambda is 200.0
the regulation term lambda/alpha is 4.1356850599738754e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 47015334.60794158
the lambda is 200.0
the regulation term lambda/alpha is 4.253931226222031e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18762472065787617
the lambda is 200.0
the regulation term lambda/alpha is 1065.9576163457134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16721497749449216
the lambda is 200.0
the regulation term lambda/alpha is 1196.0651073052816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08415485779581504
the lambda is 200.0
the regulation term lambda/alpha is 2376.5710648012746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06607806950144458
the lambda is 200.0
the regulation term lambda/alpha is 3026.722806961357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09911423709698843
the lambda is 200.0
the regulation term lambda/alpha is 2017.8735755620014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 93545.11415628936
the lambda is 200.0
the regulation term lambda/alpha is 0.0021380058360488227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3392247024749354
the lambda is 200.0
the regulation term lambda/alpha is 589.5797049590678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07891964524383509
the lambda is 200.0
the regulation term lambda/alpha is 2534.2232517906973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20179130224166827
the lambda is 200.0
the regulation term lambda/alpha is 991.1229957794565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 490908418.393203
the lambda is 200.0
the regulation term lambda/alpha is 4.074079655317827e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10270770770020592
the lambda is 200.0
the regulation term lambda/alpha is 1947.2735248242623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.743140926719651
the lambda is 200.0
the regulation term lambda/alpha is 29.65976867063557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  39  iterations
the alpha is 18209141.945487745
the lambda is 200.0
the regulation term lambda/alpha is 1.0983493928419857e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13023292985385246
the lambda is 200.0
the regulation term lambda/alpha is 1535.7099024374268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 438.8976534833819
the lambda is 200.0
the regulation term lambda/alpha is 0.45568710247746325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99999994
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000001e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999878.5518694
the lambda is 200.0
the regulation term lambda/alpha is 4.000000971585281e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07136675560029654
the lambda is 200.0
the regulation term lambda/alpha is 2802.425279357508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06981486567030261
the lambda is 200.0
the regulation term lambda/alpha is 2864.719398652008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.188274056924188
the lambda is 200.0
the regulation term lambda/alpha is 1062.2812471743448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11708811457285369
the lambda is 200.0
the regulation term lambda/alpha is 1708.11530042665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 133.21992604641386
the lambda is 200.0
the regulation term lambda/alpha is 1.5012769180664456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07281072289303207
the lambda is 200.0
the regulation term lambda/alpha is 2746.8481571570805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 18.715447358890298
the lambda is 200.0
the regulation term lambda/alpha is 10.686359570507145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.6673633297862
the lambda is 200.0
the regulation term lambda/alpha is 35.28977910218877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05285572464591861
the lambda is 200.0
the regulation term lambda/alpha is 3783.8853092981576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 176.17339116970172
the lambda is 200.0
the regulation term lambda/alpha is 1.135245218770563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0649997887454788
the lambda is 200.0
the regulation term lambda/alpha is 3076.9330771695995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 18.360538547152903
the lambda is 200.0
the regulation term lambda/alpha is 10.892926669137013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.10227117249713
the lambda is 200.0
the regulation term lambda/alpha is 11.69435322260755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499989951.60998166
the lambda is 200.0
the regulation term lambda/alpha is 4.0000803887357014e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17468301395279198
the lambda is 200.0
the regulation term lambda/alpha is 1144.931012319549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06921648358512769
the lambda is 200.0
the regulation term lambda/alpha is 2889.4851289870107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.053444960844416155
the lambda is 200.0
the regulation term lambda/alpha is 3742.167583997691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5577850236967022
the lambda is 200.0
the regulation term lambda/alpha is 358.5610790955025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2211586781045472
the lambda is 200.0
the regulation term lambda/alpha is 904.3280675852793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 132.7883041033299
the lambda is 200.0
the regulation term lambda/alpha is 1.5061567458860607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8102037662209371
the lambda is 200.0
the regulation term lambda/alpha is 110.48479940881407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0834725097415707
the lambda is 200.0
the regulation term lambda/alpha is 2395.9984025782405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34833465694156446
the lambda is 200.0
the regulation term lambda/alpha is 574.1604977122657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06487446582134677
the lambda is 200.0
the regulation term lambda/alpha is 3082.877022074693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14817826788081814
the lambda is 200.0
the regulation term lambda/alpha is 1349.7255897259024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.204898396055281
the lambda is 200.0
the regulation term lambda/alpha is 165.9890997073117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 163652.79577709647
the lambda is 200.0
the regulation term lambda/alpha is 0.001222099500655096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07191676034797378
the lambda is 200.0
the regulation term lambda/alpha is 2780.9929011302424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13083387466963012
the lambda is 200.0
the regulation term lambda/alpha is 1528.6560954112376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10817866278214214
the lambda is 200.0
the regulation term lambda/alpha is 1848.7934205913987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 118.9136928948411
the lambda is 200.0
the regulation term lambda/alpha is 1.6818920944358016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1021779211272472
the lambda is 200.0
the regulation term lambda/alpha is 1957.3700246937901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.022253142255394
the lambda is 200.0
the regulation term lambda/alpha is 12.482638878831665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 66355638.4747824
the lambda is 200.0
the regulation term lambda/alpha is 3.014061873219823e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.416630546730217
the lambda is 200.0
the regulation term lambda/alpha is 141.18007017540896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06269595103776128
the lambda is 200.0
the regulation term lambda/alpha is 3189.9986632237474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 11866383.042802392
the lambda is 200.0
the regulation term lambda/alpha is 1.6854335417843343e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 357363847.73719805
the lambda is 200.0
the regulation term lambda/alpha is 5.596537010287568e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.276422762512359
the lambda is 200.0
the regulation term lambda/alpha is 37.904468425265144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07010789797085429
the lambda is 200.0
the regulation term lambda/alpha is 2852.745636206998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17995272076442345
the lambda is 200.0
the regulation term lambda/alpha is 1111.4030349217142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13418519625006672
the lambda is 200.0
the regulation term lambda/alpha is 1490.4773819258064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.212202381237053
the lambda is 200.0
the regulation term lambda/alpha is 90.40764158664405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5274797747826585
the lambda is 200.0
the regulation term lambda/alpha is 379.16145710498097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37837684857388004
the lambda is 200.0
the regulation term lambda/alpha is 528.5735656232914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 24792.299467213186
the lambda is 200.0
the regulation term lambda/alpha is 0.00806702098224055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6503202260368304
the lambda is 200.0
the regulation term lambda/alpha is 307.540796045721
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.667377375229688
the lambda is 200.0
the regulation term lambda/alpha is 74.98001664754241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0565668900756151
the lambda is 200.0
the regulation term lambda/alpha is 3535.637185156413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13820229182785707
the lambda is 200.0
the regulation term lambda/alpha is 1447.154004139941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.21970317946958592
the lambda is 200.0
the regulation term lambda/alpha is 910.3190972604314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2653410901975569
the lambda is 200.0
the regulation term lambda/alpha is 753.7468088756706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.907495837600511
the lambda is 200.0
the regulation term lambda/alpha is 104.84950795572128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18962521347682149
the lambda is 200.0
the regulation term lambda/alpha is 1054.712062457067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11778465457033328
the lambda is 200.0
the regulation term lambda/alpha is 1698.014064137473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10088868596449013
the lambda is 200.0
the regulation term lambda/alpha is 1982.382841921384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.163895379706222
the lambda is 200.0
the regulation term lambda/alpha is 27.91777230116412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 30.17883877756193
the lambda is 200.0
the regulation term lambda/alpha is 6.627160225551843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 495787963.81262505
the lambda is 200.0
the regulation term lambda/alpha is 4.033982561052788e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18463571690475405
the lambda is 200.0
the regulation term lambda/alpha is 1083.2140354684016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18018328409088283
the lambda is 200.0
the regulation term lambda/alpha is 1109.9808786875135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09134906629323351
the lambda is 200.0
the regulation term lambda/alpha is 2189.4038780647566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.02770122266736
the lambda is 200.0
the regulation term lambda/alpha is 28.458808031695195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1688007194611483
the lambda is 200.0
the regulation term lambda/alpha is 1184.8290732317205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.7359069109665977
the lambda is 200.0
the regulation term lambda/alpha is 271.77350425654294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3800526372279865
the lambda is 200.0
the regulation term lambda/alpha is 526.2428948230761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13925070955731933
the lambda is 200.0
the regulation term lambda/alpha is 1436.2583906093105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 344.6497775301492
the lambda is 200.0
the regulation term lambda/alpha is 0.5802992284900124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08589930654957344
the lambda is 200.0
the regulation term lambda/alpha is 2328.3075036767355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499861713.0977251
the lambda is 200.0
the regulation term lambda/alpha is 4.001106601275124e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 56.20209701940898
the lambda is 200.0
the regulation term lambda/alpha is 3.5585860778634553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3650822181608348
the lambda is 200.0
the regulation term lambda/alpha is 547.82180574977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07854378278134468
the lambda is 200.0
the regulation term lambda/alpha is 2546.3504929062697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06275249170652067
the lambda is 200.0
the regulation term lambda/alpha is 3187.1244401792865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499993021.06667995
the lambda is 200.0
the regulation term lambda/alpha is 4.0000558322458593e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29228077260734203
the lambda is 200.0
the regulation term lambda/alpha is 684.2735436062551
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 360.33697406483714
the lambda is 200.0
the regulation term lambda/alpha is 0.5550360201559917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 317.50498660572373
the lambda is 200.0
the regulation term lambda/alpha is 0.6299113665523594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15092493496476236
the lambda is 200.0
the regulation term lambda/alpha is 1325.1620750851778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 62.50659131844017
the lambda is 200.0
the regulation term lambda/alpha is 3.1996625600826465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 352134470.0192291
the lambda is 200.0
the regulation term lambda/alpha is 5.679648458984391e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499217792.09856176
the lambda is 200.0
the regulation term lambda/alpha is 4.0062674681377045e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 112528.45207298349
the lambda is 200.0
the regulation term lambda/alpha is 0.0017773282784542736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09455594410765053
the lambda is 200.0
the regulation term lambda/alpha is 2115.149945225051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999821.26324403
the lambda is 200.0
the regulation term lambda/alpha is 4.000001429894559e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07647184576965027
the lambda is 200.0
the regulation term lambda/alpha is 2615.341606928689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 20.742111911507394
the lambda is 200.0
the regulation term lambda/alpha is 9.642219695528842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07078199778708448
the lambda is 200.0
the regulation term lambda/alpha is 2825.577212465933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 14.805022675610712
the lambda is 200.0
the regulation term lambda/alpha is 13.508928988637969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06250877760979492
the lambda is 200.0
the regulation term lambda/alpha is 3199.5506494860756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08276631691455917
the lambda is 200.0
the regulation term lambda/alpha is 2416.4419471083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8967676430383853
the lambda is 200.0
the regulation term lambda/alpha is 105.44254101658173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06004406352942559
the lambda is 200.0
the regulation term lambda/alpha is 3330.8871559298564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 359333304.7202387
the lambda is 200.0
the regulation term lambda/alpha is 5.565863151919952e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.807232456772322
the lambda is 200.0
the regulation term lambda/alpha is 11.231391541920226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06038096710467826
the lambda is 200.0
the regulation term lambda/alpha is 3312.3020314211594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09022080600063738
the lambda is 200.0
the regulation term lambda/alpha is 2216.783565407153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1503818274957853
the lambda is 200.0
the regulation term lambda/alpha is 1329.9479287522645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10265316805067919
the lambda is 200.0
the regulation term lambda/alpha is 1948.308111652836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07363387979917298
the lambda is 200.0
the regulation term lambda/alpha is 2716.14100120046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9618511443121555
the lambda is 200.0
the regulation term lambda/alpha is 207.93238245095102
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499968438.2797437
the lambda is 200.0
the regulation term lambda/alpha is 4.000252509701332e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 346.2108165976315
the lambda is 200.0
the regulation term lambda/alpha is 0.5776827020180635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16594344165458313
the lambda is 200.0
the regulation term lambda/alpha is 1205.2299145169397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.642844424699051
the lambda is 200.0
the regulation term lambda/alpha is 54.90215246195225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6224702644923746
the lambda is 200.0
the regulation term lambda/alpha is 321.30048840662334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.691568279600635
the lambda is 200.0
the regulation term lambda/alpha is 289.19776383540244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08813963555844673
the lambda is 200.0
the regulation term lambda/alpha is 2269.126695757404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.588480806306407
the lambda is 200.0
the regulation term lambda/alpha is 339.8581531576156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.899453767838176
the lambda is 200.0
the regulation term lambda/alpha is 20.2031349092987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06300453799080938
the lambda is 200.0
the regulation term lambda/alpha is 3174.3745193270756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08360297642864563
the lambda is 200.0
the regulation term lambda/alpha is 2392.2593254882277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499992998.93214
the lambda is 200.0
the regulation term lambda/alpha is 4.0000560093271305e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07665166153502577
the lambda is 200.0
the regulation term lambda/alpha is 2609.2063237091156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1033030267686963
the lambda is 200.0
the regulation term lambda/alpha is 181.27386143927376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 79917.89199958503
the lambda is 200.0
the regulation term lambda/alpha is 0.0025025685112044557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7197000963122393
the lambda is 200.0
the regulation term lambda/alpha is 116.29934802520751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 452210766.4885305
the lambda is 200.0
the regulation term lambda/alpha is 4.4227164592524716e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06931685544584122
the lambda is 200.0
the regulation term lambda/alpha is 2885.3011105828996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13324842146457605
the lambda is 200.0
the regulation term lambda/alpha is 1500.9558672570824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.7954484595524054
the lambda is 200.0
the regulation term lambda/alpha is 71.54487120539618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2686835607968812
the lambda is 200.0
the regulation term lambda/alpha is 744.3700664336347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14306477479355129
the lambda is 200.0
the regulation term lambda/alpha is 1397.9681601470993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0736377821468938
the lambda is 200.0
the regulation term lambda/alpha is 2715.997062500292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.99508446
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992039324e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6876852933305077
the lambda is 200.0
the regulation term lambda/alpha is 290.83070692320047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14274018180368508
the lambda is 200.0
the regulation term lambda/alpha is 1401.1471575331611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06049714715719435
the lambda is 200.0
the regulation term lambda/alpha is 3305.9410137196182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  24  iterations
the alpha is 7663.713729842758
the lambda is 200.0
the regulation term lambda/alpha is 0.026097008193454996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 396963443.8775427
the lambda is 200.0
the regulation term lambda/alpha is 5.038247301726277e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2288965822806576
the lambda is 200.0
the regulation term lambda/alpha is 873.7570391277117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09044507588293105
the lambda is 200.0
the regulation term lambda/alpha is 2211.2867731889905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0662569796202267
the lambda is 200.0
the regulation term lambda/alpha is 3018.5499119694964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9997584
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920019325e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06847391506306766
the lambda is 200.0
the regulation term lambda/alpha is 2920.8202833997548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18817080359563057
the lambda is 200.0
the regulation term lambda/alpha is 1062.8641435245702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.081650624501288
the lambda is 200.0
the regulation term lambda/alpha is 2449.4607508708655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0731825838284829
the lambda is 200.0
the regulation term lambda/alpha is 2732.8906624660517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 91791586.25007305
the lambda is 200.0
the regulation term lambda/alpha is 2.1788489356217094e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11893996347906861
the lambda is 200.0
the regulation term lambda/alpha is 1681.5206104817457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0556066486418409
the lambda is 200.0
the regulation term lambda/alpha is 3596.6922101022133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5789798173675441
the lambda is 200.0
the regulation term lambda/alpha is 345.4351844410447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18779423931618694
the lambda is 200.0
the regulation term lambda/alpha is 1064.9953945779048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 25.866136208952927
the lambda is 200.0
the regulation term lambda/alpha is 7.732117328400015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10064008410454077
the lambda is 200.0
the regulation term lambda/alpha is 1987.2797382824942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.264409060940182
the lambda is 200.0
the regulation term lambda/alpha is 756.4037302233245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499232397.83973294
the lambda is 200.0
the regulation term lambda/alpha is 4.0061502591866123e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07295458906556404
the lambda is 200.0
the regulation term lambda/alpha is 2741.431383024592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07005592674455463
the lambda is 200.0
the regulation term lambda/alpha is 2854.8619552098894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1314307002611383
the lambda is 200.0
the regulation term lambda/alpha is 1521.7144822527923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08537114081726799
the lambda is 200.0
the regulation term lambda/alpha is 2342.7120463118617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 476.763839689439
the lambda is 200.0
the regulation term lambda/alpha is 0.4194949015644281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3608292925231074
the lambda is 200.0
the regulation term lambda/alpha is 554.2787244391808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17593618282291104
the lambda is 200.0
the regulation term lambda/alpha is 1136.775828547505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07548040170295191
the lambda is 200.0
the regulation term lambda/alpha is 2649.694430444166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 455300900.3305232
the lambda is 200.0
the regulation term lambda/alpha is 4.3926994182267396e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3275997327848424
the lambda is 200.0
the regulation term lambda/alpha is 610.5011084711537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34844521810883383
the lambda is 200.0
the regulation term lambda/alpha is 573.9783174109502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 34288.120013426465
the lambda is 200.0
the regulation term lambda/alpha is 0.005832924054211326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499398730.13240045
the lambda is 200.0
the regulation term lambda/alpha is 4.0048159503124097e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1060544534587726
the lambda is 200.0
the regulation term lambda/alpha is 180.8229236585727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 160919221.7713446
the lambda is 200.0
the regulation term lambda/alpha is 1.2428596024667988e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06835531543434564
the lambda is 200.0
the regulation term lambda/alpha is 2925.8880414661726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.4823912510882056
the lambda is 200.0
the regulation term lambda/alpha is 80.56747698910316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08625164865688792
the lambda is 200.0
the regulation term lambda/alpha is 2318.796256238614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0884755090445247
the lambda is 200.0
the regulation term lambda/alpha is 2260.512566244195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0694033385441819
the lambda is 200.0
the regulation term lambda/alpha is 2881.7057535738104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 53.58514218184678
the lambda is 200.0
the regulation term lambda/alpha is 3.732377891641663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.0114220062404202
the lambda is 200.0
the regulation term lambda/alpha is 99.43214272266171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 645445.9102838531
the lambda is 200.0
the regulation term lambda/alpha is 0.00030986330041512595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3609176661244285
the lambda is 200.0
the regulation term lambda/alpha is 554.1430048232907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060707011695973055
the lambda is 200.0
the regulation term lambda/alpha is 3294.5123538878925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09031506908221743
the lambda is 200.0
the regulation term lambda/alpha is 2214.469877866472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13553883479534198
the lambda is 200.0
the regulation term lambda/alpha is 1475.5918501290919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07397912699869126
the lambda is 200.0
the regulation term lambda/alpha is 2703.4652626211464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09500249507925553
the lambda is 200.0
the regulation term lambda/alpha is 2105.207866731823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.4474719950079935
the lambda is 200.0
the regulation term lambda/alpha is 36.71427777568713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.1160239175043847
the lambda is 200.0
the regulation term lambda/alpha is 179.20762885371965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08183550899713078
the lambda is 200.0
the regulation term lambda/alpha is 2443.926877842382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07562590483517474
the lambda is 200.0
the regulation term lambda/alpha is 2644.5964572046614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1844250859726428
the lambda is 200.0
the regulation term lambda/alpha is 1084.4511685881364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.24100400962019544
the lambda is 200.0
the regulation term lambda/alpha is 829.861711907554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07479020419286744
the lambda is 200.0
the regulation term lambda/alpha is 2674.1469977036577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8951058282251444
the lambda is 200.0
the regulation term lambda/alpha is 223.43726707328997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059759124354569135
the lambda is 200.0
the regulation term lambda/alpha is 3346.76925340035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05591847364787864
the lambda is 200.0
the regulation term lambda/alpha is 3576.6355365743666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12648678755852727
the lambda is 200.0
the regulation term lambda/alpha is 1581.1928175301084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11137010014910823
the lambda is 200.0
the regulation term lambda/alpha is 1795.8141344241349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499967039.4558049
the lambda is 200.0
the regulation term lambda/alpha is 4.0002637017370664e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999998
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920000013e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9968978
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992024817e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07636945821859756
the lambda is 200.0
the regulation term lambda/alpha is 2618.8479618059646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06218241364380543
the lambda is 200.0
the regulation term lambda/alpha is 3216.3434688406287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 77838.96306562056
the lambda is 200.0
the regulation term lambda/alpha is 0.002569407300960498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 27883.897500039602
the lambda is 200.0
the regulation term lambda/alpha is 0.007172598450403712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0695931418527734
the lambda is 200.0
the regulation term lambda/alpha is 2873.846397438222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2234475176914787
the lambda is 200.0
the regulation term lambda/alpha is 89.95040288050173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16719250090957316
the lambda is 200.0
the regulation term lambda/alpha is 1196.2259007547889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3601874600818271
the lambda is 200.0
the regulation term lambda/alpha is 555.266415867349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0645601778681872
the lambda is 200.0
the regulation term lambda/alpha is 3097.884897534528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17289541827671692
the lambda is 200.0
the regulation term lambda/alpha is 1156.768652364764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1531388822060229
the lambda is 200.0
the regulation term lambda/alpha is 1306.0040475607839
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18059573804923781
the lambda is 200.0
the regulation term lambda/alpha is 1107.4458465097985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.223509703868215
the lambda is 200.0
the regulation term lambda/alpha is 24.320516081585335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06557425843722449
the lambda is 200.0
the regulation term lambda/alpha is 3049.977304607476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 231.02319662935878
the lambda is 200.0
the regulation term lambda/alpha is 0.8657139322717851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30914128456215645
the lambda is 200.0
the regulation term lambda/alpha is 646.9533834125855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17994023561615227
the lambda is 200.0
the regulation term lambda/alpha is 1111.4801495905515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.059118212157589105
the lambda is 200.0
the regulation term lambda/alpha is 3383.052238908508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2765894706243212
the lambda is 200.0
the regulation term lambda/alpha is 723.0933250949774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 24.100272874001824
the lambda is 200.0
the regulation term lambda/alpha is 8.298661224527049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9201292571535011
the lambda is 200.0
the regulation term lambda/alpha is 104.1596544893495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1412136937175134
the lambda is 200.0
the regulation term lambda/alpha is 1416.2932413628655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499928719.72737324
the lambda is 200.0
the regulation term lambda/alpha is 4.0005703234866415e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.210104590773006
the lambda is 200.0
the regulation term lambda/alpha is 951.906853934844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11284521543559832
the lambda is 200.0
the regulation term lambda/alpha is 1772.3392102002022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 11506.792088091584
the lambda is 200.0
the regulation term lambda/alpha is 0.017381038822017185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11616953860782528
the lambda is 200.0
the regulation term lambda/alpha is 1721.6217125142978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10219991102917345
the lambda is 200.0
the regulation term lambda/alpha is 1956.9488660602558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35155248336235273
the lambda is 200.0
the regulation term lambda/alpha is 568.9050980016992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.5084494680738745
the lambda is 200.0
the regulation term lambda/alpha is 57.00523887260068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3662875626893296
the lambda is 200.0
the regulation term lambda/alpha is 546.01908547365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09332296050920078
the lambda is 200.0
the regulation term lambda/alpha is 2143.095320902104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09266768391194648
the lambda is 200.0
the regulation term lambda/alpha is 2158.249689180119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06571284523443748
the lambda is 200.0
the regulation term lambda/alpha is 3043.5449764270443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05823438011420149
the lambda is 200.0
the regulation term lambda/alpha is 3434.3973372393884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 505.93285666147585
the lambda is 200.0
the regulation term lambda/alpha is 0.39530937231424323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06429820377465138
the lambda is 200.0
the regulation term lambda/alpha is 3110.5067989293825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 68767578.00226395
the lambda is 200.0
the regulation term lambda/alpha is 2.908347302756768e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09868378540648182
the lambda is 200.0
the regulation term lambda/alpha is 2026.675397343072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06562033171614373
the lambda is 200.0
the regulation term lambda/alpha is 3047.8358577208555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6728740101946558
the lambda is 200.0
the regulation term lambda/alpha is 297.2324639825842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.357130305300583
the lambda is 200.0
the regulation term lambda/alpha is 84.84893667110858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09262302527850699
the lambda is 200.0
the regulation term lambda/alpha is 2159.2902995623663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 74.5841239917655
the lambda is 200.0
the regulation term lambda/alpha is 2.6815358188303065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16099744032703867
the lambda is 200.0
the regulation term lambda/alpha is 1242.2557749597406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 783.0141197354426
the lambda is 200.0
the regulation term lambda/alpha is 0.2554232356213118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16676920276805715
the lambda is 200.0
the regulation term lambda/alpha is 1199.2621939805053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1593070818169308
the lambda is 200.0
the regulation term lambda/alpha is 1255.4369693987105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17525084784046355
the lambda is 200.0
the regulation term lambda/alpha is 1141.2212977255688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.1765777725579305
the lambda is 200.0
the regulation term lambda/alpha is 91.88736672843925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2291348627615389
the lambda is 200.0
the regulation term lambda/alpha is 872.8484072200763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.239551456888996
the lambda is 200.0
the regulation term lambda/alpha is 11.601229910194627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1612343919661691
the lambda is 200.0
the regulation term lambda/alpha is 1240.4301437249496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08281258898237445
the lambda is 200.0
the regulation term lambda/alpha is 2415.091744596553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.120627235321902
the lambda is 200.0
the regulation term lambda/alpha is 39.05771516044113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2515211317667017
the lambda is 200.0
the regulation term lambda/alpha is 795.1618164055889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08624853697870093
the lambda is 200.0
the regulation term lambda/alpha is 2318.8799138632344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19539765183360563
the lambda is 200.0
the regulation term lambda/alpha is 1023.5537537079185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 241462.03157335127
the lambda is 200.0
the regulation term lambda/alpha is 0.0008282875725711935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.291482986401541
the lambda is 200.0
the regulation term lambda/alpha is 87.27972286369557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 311229054.6086983
the lambda is 200.0
the regulation term lambda/alpha is 6.426135254353285e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3869234394701843
the lambda is 200.0
the regulation term lambda/alpha is 516.8981240161122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  23  iterations
the alpha is 790297.6373334271
the lambda is 200.0
the regulation term lambda/alpha is 0.00025306921158821567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08329460124146065
the lambda is 200.0
the regulation term lambda/alpha is 2401.1160029474777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20194899227099014
the lambda is 200.0
the regulation term lambda/alpha is 990.3490864248788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17846174382825908
the lambda is 200.0
the regulation term lambda/alpha is 1120.688365527057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 438.24687980091113
the lambda is 200.0
the regulation term lambda/alpha is 0.456363773977939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.0029915568619177
the lambda is 200.0
the regulation term lambda/alpha is 99.85064555805694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06563607931046209
the lambda is 200.0
the regulation term lambda/alpha is 3047.104612296989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9828168025943333
the lambda is 200.0
the regulation term lambda/alpha is 203.49672438654045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.17231498619263833
the lambda is 200.0
the regulation term lambda/alpha is 1160.665154082486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3419570265736513
the lambda is 200.0
the regulation term lambda/alpha is 584.8688123299132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05416375703709803
the lambda is 200.0
the regulation term lambda/alpha is 3692.506039841647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1030.4833414470004
the lambda is 200.0
the regulation term lambda/alpha is 0.19408368088625366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 27262.559235694698
the lambda is 200.0
the regulation term lambda/alpha is 0.007336068425232113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 104222067.86698581
the lambda is 200.0
the regulation term lambda/alpha is 1.9189793878898226e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12609677073189993
the lambda is 200.0
the regulation term lambda/alpha is 1586.0834408299725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10504875301969513
the lambda is 200.0
the regulation term lambda/alpha is 1903.8779066944553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499349594.1464024
the lambda is 200.0
the regulation term lambda/alpha is 4.0052100240891106e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99999946
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920000044e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0574905580624856
the lambda is 200.0
the regulation term lambda/alpha is 189.1269841372733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054562093702381444
the lambda is 200.0
the regulation term lambda/alpha is 3665.548486664299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 3228633.6352983317
the lambda is 200.0
the regulation term lambda/alpha is 6.194570911156342e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3004622967535561
the lambda is 200.0
the regulation term lambda/alpha is 665.6409212103013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.882885600966139
the lambda is 200.0
the regulation term lambda/alpha is 51.50808459312734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.94144755629089
the lambda is 200.0
the regulation term lambda/alpha is 11.147372550208365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 130306.18380121366
the lambda is 200.0
the regulation term lambda/alpha is 0.001534846575701323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19015873981442638
the lambda is 200.0
the regulation term lambda/alpha is 1051.7528681310025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0984372097957833
the lambda is 200.0
the regulation term lambda/alpha is 2031.7520215670243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 133.4992311435684
the lambda is 200.0
the regulation term lambda/alpha is 1.4981359689249072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13041511201975522
the lambda is 200.0
the regulation term lambda/alpha is 1533.5646069123038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 36.155462291761566
the lambda is 200.0
the regulation term lambda/alpha is 5.531667618742419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08319460756811208
the lambda is 200.0
the regulation term lambda/alpha is 2404.001964144833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5608121884211852
the lambda is 200.0
the regulation term lambda/alpha is 128.13841504038152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1585759659260602
the lambda is 200.0
the regulation term lambda/alpha is 1261.2251726295947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 75.79510678522243
the lambda is 200.0
the regulation term lambda/alpha is 2.638692766364615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3576015489154297
the lambda is 200.0
the regulation term lambda/alpha is 559.2816938477484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1825.6435493771814
the lambda is 200.0
the regulation term lambda/alpha is 0.10955041035706561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 4537.753664415354
the lambda is 200.0
the regulation term lambda/alpha is 0.04407467103566717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 492009355.4518819
the lambda is 200.0
the regulation term lambda/alpha is 4.064963354534421e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.686577885955332
the lambda is 200.0
the regulation term lambda/alpha is 74.44414734653454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26735909529295415
the lambda is 200.0
the regulation term lambda/alpha is 748.0575881693998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07786693927353061
the lambda is 200.0
the regulation term lambda/alpha is 2568.48415856492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.580836801181096
the lambda is 200.0
the regulation term lambda/alpha is 35.836919645755124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9207460984212555
the lambda is 200.0
the regulation term lambda/alpha is 217.21514795764784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 20851.712135161124
the lambda is 200.0
the regulation term lambda/alpha is 0.009591538512693676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 1.9875759104757933
the lambda is 200.0
the regulation term lambda/alpha is 100.62508754803899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.971697844009862
the lambda is 200.0
the regulation term lambda/alpha is 205.82529973995716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 468247143.77767825
the lambda is 200.0
the regulation term lambda/alpha is 4.271248691160392e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.2123451125235585
the lambda is 200.0
the regulation term lambda/alpha is 38.370444719683945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1989449821722908
the lambda is 200.0
the regulation term lambda/alpha is 1005.3030632700026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 23.673543538201066
the lambda is 200.0
the regulation term lambda/alpha is 8.44824940031761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3442258546467146
the lambda is 200.0
the regulation term lambda/alpha is 581.0138817296676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07446707902582633
the lambda is 200.0
the regulation term lambda/alpha is 2685.7505708077647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05668645164670001
the lambda is 200.0
the regulation term lambda/alpha is 3528.179912309663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 27.173746186242514
the lambda is 200.0
the regulation term lambda/alpha is 7.36004519322609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0942579489210604
the lambda is 200.0
the regulation term lambda/alpha is 2121.8369621802076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1015340642430737
the lambda is 200.0
the regulation term lambda/alpha is 1969.7822744610887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08394521125271895
the lambda is 200.0
the regulation term lambda/alpha is 2382.5063635601023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.092122070487443
the lambda is 200.0
the regulation term lambda/alpha is 183.1297117827998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06643269562947213
the lambda is 200.0
the regulation term lambda/alpha is 3010.56577796419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07982008299487021
the lambda is 200.0
the regulation term lambda/alpha is 2505.635079493132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0796271383530164
the lambda is 200.0
the regulation term lambda/alpha is 2511.7064877218922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.3441467214341594
the lambda is 200.0
the regulation term lambda/alpha is 85.31889159123926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.432685374798261
the lambda is 200.0
the regulation term lambda/alpha is 45.11937642519966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 500.1893261925097
the lambda is 200.0
the regulation term lambda/alpha is 0.3998485963753358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06319322436840565
the lambda is 200.0
the regulation term lambda/alpha is 3164.896268530853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.4884485012235262
the lambda is 200.0
the regulation term lambda/alpha is 57.33207754961918
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.174148642178864
the lambda is 200.0
the regulation term lambda/alpha is 32.393130063907854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.40043439470798714
the lambda is 200.0
the regulation term lambda/alpha is 499.4575956589544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 242141565.4383365
the lambda is 200.0
the regulation term lambda/alpha is 8.259631081427521e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.335674670851496
the lambda is 200.0
the regulation term lambda/alpha is 31.567277423529795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06837593919436757
the lambda is 200.0
the regulation term lambda/alpha is 2925.005526161385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12957405412911976
the lambda is 200.0
the regulation term lambda/alpha is 1543.5188884396655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  23  iterations
the alpha is 1357254.8947113703
the lambda is 200.0
the regulation term lambda/alpha is 0.00014735625620457342
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.99875664919181
the lambda is 200.0
the regulation term lambda/alpha is 33.34024226952851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7943704974484314
the lambda is 200.0
the regulation term lambda/alpha is 111.4597014855054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  28  iterations
the alpha is 207298.64610109478
the lambda is 200.0
the regulation term lambda/alpha is 0.000964791636422288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3849294469037784
the lambda is 200.0
the regulation term lambda/alpha is 519.5757342253797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06420912326839238
the lambda is 200.0
the regulation term lambda/alpha is 3114.8221595240516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.1367230180058865
the lambda is 200.0
the regulation term lambda/alpha is 63.76080988086296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06390500814514863
the lambda is 200.0
the regulation term lambda/alpha is 3129.6451687438375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07153840285415743
the lambda is 200.0
the regulation term lambda/alpha is 2795.7012180958563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.729415648095753
the lambda is 200.0
the regulation term lambda/alpha is 25.875177258616272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24803536956954364
the lambda is 200.0
the regulation term lambda/alpha is 806.3366137946081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0684868143712639
the lambda is 200.0
the regulation term lambda/alpha is 2920.2701547163388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37037328272408554
the lambda is 200.0
the regulation term lambda/alpha is 539.9957538216725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 2540.793898594369
the lambda is 200.0
the regulation term lambda/alpha is 0.07871555426461195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 340.3700185945181
the lambda is 200.0
the regulation term lambda/alpha is 0.587595819472747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07747747280910024
the lambda is 200.0
the regulation term lambda/alpha is 2581.395504378257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 26036.798198224365
the lambda is 200.0
the regulation term lambda/alpha is 0.007681436038231438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1238532526204443
the lambda is 200.0
the regulation term lambda/alpha is 177.95917708443508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8666115936504317
the lambda is 200.0
the regulation term lambda/alpha is 107.14601831486044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1665.1236819020762
the lambda is 200.0
the regulation term lambda/alpha is 0.12011119784900263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2772285121197273
the lambda is 200.0
the regulation term lambda/alpha is 156.58905051224852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09039732874368506
the lambda is 200.0
the regulation term lambda/alpha is 2212.4547570104114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11042230494572487
the lambda is 200.0
the regulation term lambda/alpha is 1811.22826677368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.562480663610016
the lambda is 200.0
the regulation term lambda/alpha is 78.04936944118849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4139770552265022
the lambda is 200.0
the regulation term lambda/alpha is 483.11856291304014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2439.445920771566
the lambda is 200.0
the regulation term lambda/alpha is 0.08198583059252346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.557722788264702
the lambda is 200.0
the regulation term lambda/alpha is 78.19455686035892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 860.0631661441213
the lambda is 200.0
the regulation term lambda/alpha is 0.2325410596254809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06326306604876236
the lambda is 200.0
the regulation term lambda/alpha is 3161.4022602989644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06711072712798123
the lambda is 200.0
the regulation term lambda/alpha is 2980.1495015632418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 425879973.14295435
the lambda is 200.0
the regulation term lambda/alpha is 4.6961588384637744e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12784231073661323
the lambda is 200.0
the regulation term lambda/alpha is 1564.4272920883716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2078543396437836
the lambda is 200.0
the regulation term lambda/alpha is 962.2122893501083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.056576056883854295
the lambda is 200.0
the regulation term lambda/alpha is 3535.0643190030464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19936882922207885
the lambda is 200.0
the regulation term lambda/alpha is 1003.1658448333369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27638660089223355
the lambda is 200.0
the regulation term lambda/alpha is 723.6240807418244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 1664.5387625945505
the lambda is 200.0
the regulation term lambda/alpha is 0.12015340495180535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3329621667541658
the lambda is 200.0
the regulation term lambda/alpha is 600.668844600789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.55939317
the lambda is 200.0
the regulation term lambda/alpha is 3.999999995524855e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09154641296135799
the lambda is 200.0
the regulation term lambda/alpha is 2184.684178553458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08041152472653593
the lambda is 200.0
the regulation term lambda/alpha is 2487.2056671001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.746950793201419
the lambda is 200.0
the regulation term lambda/alpha is 53.376735120964504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0693916911132352
the lambda is 200.0
the regulation term lambda/alpha is 2882.189449362672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.17882541417644307
the lambda is 200.0
the regulation term lambda/alpha is 1118.4092648188384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06149490904792838
the lambda is 200.0
the regulation term lambda/alpha is 3252.301744915542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12258780304802758
the lambda is 200.0
the regulation term lambda/alpha is 1631.4836796744273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 56.45959512222321
the lambda is 200.0
the regulation term lambda/alpha is 3.5423562561339987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17194873568641802
the lambda is 200.0
the regulation term lambda/alpha is 1163.1373688303177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20535040829867507
the lambda is 200.0
the regulation term lambda/alpha is 973.9449833920316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499406038.7166224
the lambda is 200.0
the regulation term lambda/alpha is 4.004757341620489e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18885605977073566
the lambda is 200.0
the regulation term lambda/alpha is 1059.007586215622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18144266484621088
the lambda is 200.0
the regulation term lambda/alpha is 1102.27657959895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 38.39219582924834
the lambda is 200.0
the regulation term lambda/alpha is 5.209392056904282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2851102695348224
the lambda is 200.0
the regulation term lambda/alpha is 155.62866840399226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.78006374474113
the lambda is 200.0
the regulation term lambda/alpha is 13.531741368244212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06547353903270059
the lambda is 200.0
the regulation term lambda/alpha is 3054.6691526802992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 26.42329614300445
the lambda is 200.0
the regulation term lambda/alpha is 7.569078396487256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9287484237797752
the lambda is 200.0
the regulation term lambda/alpha is 215.34356869866838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0669734257532165
the lambda is 200.0
the regulation term lambda/alpha is 2986.259068439465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09096058449609587
the lambda is 200.0
the regulation term lambda/alpha is 2198.7545606480157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11883207278534023
the lambda is 200.0
the regulation term lambda/alpha is 1683.0473062712838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05762831929671767
the lambda is 200.0
the regulation term lambda/alpha is 3470.515927598662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.060197581425642
the lambda is 200.0
the regulation term lambda/alpha is 14.224551173036993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06211597922876207
the lambda is 200.0
the regulation term lambda/alpha is 3219.783419390938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6972576077564836
the lambda is 200.0
the regulation term lambda/alpha is 286.8380319915416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20196751651926573
the lambda is 200.0
the regulation term lambda/alpha is 990.2582526478805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10487205566715517
the lambda is 200.0
the regulation term lambda/alpha is 1907.0857220036157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.058259457533133295
the lambda is 200.0
the regulation term lambda/alpha is 3432.919022396597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.688758054748894
the lambda is 200.0
the regulation term lambda/alpha is 26.012003313912544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09927871600716379
the lambda is 200.0
the regulation term lambda/alpha is 2014.5304859257883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11263242098676136
the lambda is 200.0
the regulation term lambda/alpha is 1775.6876594484966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 79780984.0529038
the lambda is 200.0
the regulation term lambda/alpha is 2.5068630372793775e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09369740237536744
the lambda is 200.0
the regulation term lambda/alpha is 2134.530893383432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 103760831.47759138
the lambda is 200.0
the regulation term lambda/alpha is 1.92750961178634e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2168272535585432
the lambda is 200.0
the regulation term lambda/alpha is 164.361867648108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10874307657421582
the lambda is 200.0
the regulation term lambda/alpha is 1839.197549864266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.460725168349107
the lambda is 200.0
the regulation term lambda/alpha is 26.807045627208858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1021773974181694
the lambda is 200.0
the regulation term lambda/alpha is 181.4589924167347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2868261284454042
the lambda is 200.0
the regulation term lambda/alpha is 697.2865445836428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06837711552219275
the lambda is 200.0
the regulation term lambda/alpha is 2924.9552057382007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2782360608641596
the lambda is 200.0
the regulation term lambda/alpha is 87.78721548465782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.511035197394106
the lambda is 200.0
the regulation term lambda/alpha is 391.3624756569589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.218743079088624
the lambda is 200.0
the regulation term lambda/alpha is 21.69493154155374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07086035867003992
the lambda is 200.0
the regulation term lambda/alpha is 2822.4525496871483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3204630226736396
the lambda is 200.0
the regulation term lambda/alpha is 624.0969654825997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09787868387348024
the lambda is 200.0
the regulation term lambda/alpha is 2043.3458244955932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 47449.78164243717
the lambda is 200.0
the regulation term lambda/alpha is 0.004214982515770485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08805831591614645
the lambda is 200.0
the regulation term lambda/alpha is 2271.222177249563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06284233744094045
the lambda is 200.0
the regulation term lambda/alpha is 3182.5678061062104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18496348963550951
the lambda is 200.0
the regulation term lambda/alpha is 1081.2944781379372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 33.26146849851814
the lambda is 200.0
the regulation term lambda/alpha is 6.012963619117128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11252872617906713
the lambda is 200.0
the regulation term lambda/alpha is 1777.323949102025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.67135282919834
the lambda is 200.0
the regulation term lambda/alpha is 14.629130159881008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.309067043007909
the lambda is 200.0
the regulation term lambda/alpha is 24.07009101801631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09725839933124351
the lambda is 200.0
the regulation term lambda/alpha is 2056.3776637824176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10164027754027137
the lambda is 200.0
the regulation term lambda/alpha is 1967.72386734931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1686.1439482396447
the lambda is 200.0
the regulation term lambda/alpha is 0.11861383496278742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10771510373471722
the lambda is 200.0
the regulation term lambda/alpha is 1856.7498249137257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2692532862253296
the lambda is 200.0
the regulation term lambda/alpha is 742.7950195290329
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2863010283102878
the lambda is 200.0
the regulation term lambda/alpha is 698.5654266782573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6602788976720808
the lambda is 200.0
the regulation term lambda/alpha is 302.9023049277087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10212322508647956
the lambda is 200.0
the regulation term lambda/alpha is 1958.4183698726401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3044357812159442
the lambda is 200.0
the regulation term lambda/alpha is 153.32299441645782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37506808386649526
the lambda is 200.0
the regulation term lambda/alpha is 533.2365205224703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05887229054730593
the lambda is 200.0
the regulation term lambda/alpha is 3397.1839407079474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23468671049048698
the lambda is 200.0
the regulation term lambda/alpha is 852.1999374485545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5308624155577586
the lambda is 200.0
the regulation term lambda/alpha is 130.6453133654937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1205826295855488
the lambda is 200.0
the regulation term lambda/alpha is 1658.6136882850742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06231051358597681
the lambda is 200.0
the regulation term lambda/alpha is 3209.7312073032035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 133218.83318791888
the lambda is 200.0
the regulation term lambda/alpha is 0.0015012892337668159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8395056514438735
the lambda is 200.0
the regulation term lambda/alpha is 238.23544207953594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.44522027229728534
the lambda is 200.0
the regulation term lambda/alpha is 449.21584313315975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05957583123042032
the lambda is 200.0
the regulation term lambda/alpha is 3357.066042880103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6967739824844836
the lambda is 200.0
the regulation term lambda/alpha is 287.03712398511345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.7851919168725083
the lambda is 200.0
the regulation term lambda/alpha is 71.80833708026124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0622886070395914
the lambda is 200.0
the regulation term lambda/alpha is 3210.860051387528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08771067776606384
the lambda is 200.0
the regulation term lambda/alpha is 2280.2240855261302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06274330316430621
the lambda is 200.0
the regulation term lambda/alpha is 3187.591183656031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 5293.853740405937
the lambda is 200.0
the regulation term lambda/alpha is 0.037779661057402734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 27467.969184089787
the lambda is 200.0
the regulation term lambda/alpha is 0.007281208110421413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 446058522.8111101
the lambda is 200.0
the regulation term lambda/alpha is 4.4837165926026455e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 4690.653910197247
the lambda is 200.0
the regulation term lambda/alpha is 0.04263797837764368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3779550263396919
the lambda is 200.0
the regulation term lambda/alpha is 529.1634878808238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2776434886874399
the lambda is 200.0
the regulation term lambda/alpha is 720.3482456782991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18963705174165943
the lambda is 200.0
the regulation term lambda/alpha is 1054.6462211005996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.145604204507944
the lambda is 200.0
the regulation term lambda/alpha is 48.243872336514734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08895310475040023
the lambda is 200.0
the regulation term lambda/alpha is 2248.375709439193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07556827032611782
the lambda is 200.0
the regulation term lambda/alpha is 2646.613441552813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5511423738646668
the lambda is 200.0
the regulation term lambda/alpha is 128.9372293413019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499812610.2463106
the lambda is 200.0
the regulation term lambda/alpha is 4.0014996800788766e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99999946
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920000044e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24666443390507084
the lambda is 200.0
the regulation term lambda/alpha is 810.8181501228113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499968595.7702012
the lambda is 200.0
the regulation term lambda/alpha is 4.000251249618992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499983127.3134003
the lambda is 200.0
the regulation term lambda/alpha is 4.000134986047952e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2972003435122863
the lambda is 200.0
the regulation term lambda/alpha is 87.06249786390488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 152616100.95116305
the lambda is 200.0
the regulation term lambda/alpha is 1.3104777199359832e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07379205546246612
the lambda is 200.0
the regulation term lambda/alpha is 2710.3188649044855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08629560547584089
the lambda is 200.0
the regulation term lambda/alpha is 2317.615119532263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059392757347037195
the lambda is 200.0
the regulation term lambda/alpha is 3367.4139564085585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 19.228665180757382
the lambda is 200.0
the regulation term lambda/alpha is 10.401137994755098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 496298933.5008599
the lambda is 200.0
the regulation term lambda/alpha is 4.0298293326808743e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16919548322089328
the lambda is 200.0
the regulation term lambda/alpha is 1182.0646520385526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12797197294113763
the lambda is 200.0
the regulation term lambda/alpha is 1562.8422021124313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.92923455609309
the lambda is 200.0
the regulation term lambda/alpha is 28.86321690815529
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06935416725654352
the lambda is 200.0
the regulation term lambda/alpha is 2883.7488490084947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12329266831340906
the lambda is 200.0
the regulation term lambda/alpha is 1622.156473178125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20707531008798213
the lambda is 200.0
the regulation term lambda/alpha is 965.8321888544995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05404648958244203
the lambda is 200.0
the regulation term lambda/alpha is 3700.51786055266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 305.95023464837965
the lambda is 200.0
the regulation term lambda/alpha is 0.6537010838702398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 287315.11911152827
the lambda is 200.0
the regulation term lambda/alpha is 0.0006960998106137436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2609817275888764
the lambda is 200.0
the regulation term lambda/alpha is 158.6065805905214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 137728.68077008994
the lambda is 200.0
the regulation term lambda/alpha is 0.00145213036879268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499256855.725348
the lambda is 200.0
the regulation term lambda/alpha is 4.0059540035645366e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06672849758890183
the lambda is 200.0
the regulation term lambda/alpha is 2997.22018667574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 21.551019266593713
the lambda is 200.0
the regulation term lambda/alpha is 9.280303521885877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.057940995813080515
the lambda is 200.0
the regulation term lambda/alpha is 3451.7874122358257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10481021269353974
the lambda is 200.0
the regulation term lambda/alpha is 1908.2109926137716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0589631363738779
the lambda is 200.0
the regulation term lambda/alpha is 3391.9498232221727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.085956844811472
the lambda is 200.0
the regulation term lambda/alpha is 48.9481430167254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09925739294725104
the lambda is 200.0
the regulation term lambda/alpha is 2014.9632592736666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10130251056848497
the lambda is 200.0
the regulation term lambda/alpha is 1974.2847327045383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3198906819814319
the lambda is 200.0
the regulation term lambda/alpha is 625.2135847195732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06497635095474483
the lambda is 200.0
the regulation term lambda/alpha is 3078.042965806088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2761297127017662
the lambda is 200.0
the regulation term lambda/alpha is 724.2972805900463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10933396630741338
the lambda is 200.0
the regulation term lambda/alpha is 1829.2577023837378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08248892879434064
the lambda is 200.0
the regulation term lambda/alpha is 2424.567792589901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07586841721862639
the lambda is 200.0
the regulation term lambda/alpha is 2636.143039911714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1642306773484242
the lambda is 200.0
the regulation term lambda/alpha is 1217.7992761710973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 71378.44242525288
the lambda is 200.0
the regulation term lambda/alpha is 0.002801966436987455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 17.69004007352175
the lambda is 200.0
the regulation term lambda/alpha is 11.305796887331969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 5844.076156934547
the lambda is 200.0
the regulation term lambda/alpha is 0.03422268886121225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 1151305.9100152126
the lambda is 200.0
the regulation term lambda/alpha is 0.00017371577637203072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23074509096536144
the lambda is 200.0
the regulation term lambda/alpha is 866.7573345255836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11581465359548054
the lambda is 200.0
the regulation term lambda/alpha is 1726.8971912532202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1283938750315771
the lambda is 200.0
the regulation term lambda/alpha is 1557.7067048627682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.1106784518369155
the lambda is 200.0
the regulation term lambda/alpha is 64.29465568255573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499439992.07123315
the lambda is 200.0
the regulation term lambda/alpha is 4.004485086798471e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0689623710694975
the lambda is 200.0
the regulation term lambda/alpha is 2900.132302563206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11504980689473383
the lambda is 200.0
the regulation term lambda/alpha is 1738.37753750419
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7567847533189154
the lambda is 200.0
the regulation term lambda/alpha is 264.2759372766041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5176043192171041
the lambda is 200.0
the regulation term lambda/alpha is 386.39553916881425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 79494.62085675335
the lambda is 200.0
the regulation term lambda/alpha is 0.002515893501277191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07012349524609146
the lambda is 200.0
the regulation term lambda/alpha is 2852.1111119478546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 1007719.6681606553
the lambda is 200.0
the regulation term lambda/alpha is 0.00019846789371993787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99998116
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920001506e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06641561625959923
the lambda is 200.0
the regulation term lambda/alpha is 3011.339971886408
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3689615274838255
the lambda is 200.0
the regulation term lambda/alpha is 542.0619362780787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.055159882197709585
the lambda is 200.0
the regulation term lambda/alpha is 3625.8235520362414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 52.84962250978318
the lambda is 200.0
the regulation term lambda/alpha is 3.784322205196022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 3665.2476232905174
the lambda is 200.0
the regulation term lambda/alpha is 0.05456657245450929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.524791791814298
the lambda is 200.0
the regulation term lambda/alpha is 131.16544899682782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 734.668038845555
the lambda is 200.0
the regulation term lambda/alpha is 0.2722317964373088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16039194084454528
the lambda is 200.0
the regulation term lambda/alpha is 1246.9454446831812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2980218638186708
the lambda is 200.0
the regulation term lambda/alpha is 671.0917025929632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1764515823602886
the lambda is 200.0
the regulation term lambda/alpha is 1133.4554064334143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3287970886288476
the lambda is 200.0
the regulation term lambda/alpha is 150.51206968429995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09164089572722639
the lambda is 200.0
the regulation term lambda/alpha is 2182.431745269162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27905379145814296
the lambda is 200.0
the regulation term lambda/alpha is 716.7076962292385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06416331522264802
the lambda is 200.0
the regulation term lambda/alpha is 3117.0459211154516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09844664994418055
the lambda is 200.0
the regulation term lambda/alpha is 2031.5571948197364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 342.0648971371633
the lambda is 200.0
the regulation term lambda/alpha is 0.5846843732690956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5043853291757628
the lambda is 200.0
the regulation term lambda/alpha is 396.52223891370585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.87487984
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999930009613e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12890785066750915
the lambda is 200.0
the regulation term lambda/alpha is 1551.495886126115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11856752486162928
the lambda is 200.0
the regulation term lambda/alpha is 1686.8025223045188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08103233386918876
the lambda is 200.0
the regulation term lambda/alpha is 2468.1505573177965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06332800165137603
the lambda is 200.0
the regulation term lambda/alpha is 3158.160604861819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06395168386157861
the lambda is 200.0
the regulation term lambda/alpha is 3127.3609688353736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0972086916141704
the lambda is 200.0
the regulation term lambda/alpha is 2057.4291936138497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.069207451701617
the lambda is 200.0
the regulation term lambda/alpha is 2889.8622197835825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3167131084617645
the lambda is 200.0
the regulation term lambda/alpha is 631.4863346559122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07220433764200321
the lambda is 200.0
the regulation term lambda/alpha is 2769.9166910389968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.099458669331212
the lambda is 200.0
the regulation term lambda/alpha is 2010.8855401430174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 449.8991541990429
the lambda is 200.0
the regulation term lambda/alpha is 0.44454406756123094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.826191532271155
the lambda is 200.0
the regulation term lambda/alpha is 25.555214075109678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 41.443554809381254
the lambda is 200.0
the regulation term lambda/alpha is 4.8258408555901084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9677460065897994
the lambda is 200.0
the regulation term lambda/alpha is 206.6657972630358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 284362507.2061864
the lambda is 200.0
the regulation term lambda/alpha is 7.033276009730193e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061527044671689325
the lambda is 200.0
the regulation term lambda/alpha is 3250.6030651595192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 64.03784878468174
the lambda is 200.0
the regulation term lambda/alpha is 3.123153007098534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 636.7884504211064
the lambda is 200.0
the regulation term lambda/alpha is 0.3140760481251514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09031294114589156
the lambda is 200.0
the regulation term lambda/alpha is 2214.5220547841523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24406995389289143
the lambda is 200.0
the regulation term lambda/alpha is 819.4372015482444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05933531227359136
the lambda is 200.0
the regulation term lambda/alpha is 3370.6740950112926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2182529534600874
the lambda is 200.0
the regulation term lambda/alpha is 90.1610430352566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999420.2431294
the lambda is 200.0
the regulation term lambda/alpha is 4.000004638060343e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13765910171490012
the lambda is 200.0
the regulation term lambda/alpha is 1452.86434030502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 848.1248346285748
the lambda is 200.0
the regulation term lambda/alpha is 0.23581434222190578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05776883293750075
the lambda is 200.0
the regulation term lambda/alpha is 3462.074441011766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499994469.47249186
the lambda is 200.0
the regulation term lambda/alpha is 4.000044244709458e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06884838736663061
the lambda is 200.0
the regulation term lambda/alpha is 2904.9336905302134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 25.93639591176818
the lambda is 200.0
the regulation term lambda/alpha is 7.71117161691897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08562359615178022
the lambda is 200.0
the regulation term lambda/alpha is 2335.8047195947133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11511453563091797
the lambda is 200.0
the regulation term lambda/alpha is 1737.4000503398036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 429033891.17048013
the lambda is 200.0
the regulation term lambda/alpha is 4.661636390877297e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08618427266666692
the lambda is 200.0
the regulation term lambda/alpha is 2320.609013822461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3986071943757308
the lambda is 200.0
the regulation term lambda/alpha is 501.7470904237573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0629711517880796
the lambda is 200.0
the regulation term lambda/alpha is 3176.0575171480327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08112729101228792
the lambda is 200.0
the regulation term lambda/alpha is 2465.2616586162976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 55.54064022839952
the lambda is 200.0
the regulation term lambda/alpha is 3.600966772754886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.859182236917115
the lambda is 200.0
the regulation term lambda/alpha is 25.447940252681185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9408156289832666
the lambda is 200.0
the regulation term lambda/alpha is 212.58150251621427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17346600570603946
the lambda is 200.0
the regulation term lambda/alpha is 1152.9636552473908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8434063001080987
the lambda is 200.0
the regulation term lambda/alpha is 237.1336329529032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1979728466622313
the lambda is 200.0
the regulation term lambda/alpha is 1010.2395524029985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2780378575643899
the lambda is 200.0
the regulation term lambda/alpha is 719.3265037790137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1852669761990472
the lambda is 200.0
the regulation term lambda/alpha is 1079.5232053937336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 681.7445448516626
the lambda is 200.0
the regulation term lambda/alpha is 0.2933650170145725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 12641.203468455771
the lambda is 200.0
the regulation term lambda/alpha is 0.015821278448612114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9079781319787368
the lambda is 200.0
the regulation term lambda/alpha is 104.82300433526608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27811692424497075
the lambda is 200.0
the regulation term lambda/alpha is 719.1220043259077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.251425464701256
the lambda is 200.0
the regulation term lambda/alpha is 21.618290150323155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 468665976.92086005
the lambda is 200.0
the regulation term lambda/alpha is 4.267431600518602e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 5747.645872217778
the lambda is 200.0
the regulation term lambda/alpha is 0.03479685499879768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1936495510465986
the lambda is 200.0
the regulation term lambda/alpha is 1032.7935123994855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  26  iterations
the alpha is 1004586.2585330358
the lambda is 200.0
the regulation term lambda/alpha is 0.00019908693584168015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 10.413212898886831
the lambda is 200.0
the regulation term lambda/alpha is 19.206368096188633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0595989859302706
the lambda is 200.0
the regulation term lambda/alpha is 3355.761794906968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19278203703894334
the lambda is 200.0
the regulation term lambda/alpha is 1037.4410555668035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 136.5047651793518
the lambda is 200.0
the regulation term lambda/alpha is 1.4651503171865292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 168.42994243017014
the lambda is 200.0
the regulation term lambda/alpha is 1.1874373232830533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 219131554.39488986
the lambda is 200.0
the regulation term lambda/alpha is 9.126937494341253e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.062453571524005734
the lambda is 200.0
the regulation term lambda/alpha is 3202.3789051539597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 17947939.02371757
the lambda is 200.0
the regulation term lambda/alpha is 1.1143340733201011e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 260.0570663188221
the lambda is 200.0
the regulation term lambda/alpha is 0.7690619710168001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08826013617727424
the lambda is 200.0
the regulation term lambda/alpha is 2266.0286813776434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23964721141127943
the lambda is 200.0
the regulation term lambda/alpha is 834.5600969950892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0698603321839807
the lambda is 200.0
the regulation term lambda/alpha is 2862.8549814691683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 202.01364853698092
the lambda is 200.0
the regulation term lambda/alpha is 0.9900321163863722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17427635845416187
the lambda is 200.0
the regulation term lambda/alpha is 1147.6025880619027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09165718360438761
the lambda is 200.0
the regulation term lambda/alpha is 2182.043917727645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.223791414227584
the lambda is 200.0
the regulation term lambda/alpha is 893.689334286125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2501711082757516
the lambda is 200.0
the regulation term lambda/alpha is 799.4528280202109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 578.2111115475062
the lambda is 200.0
the regulation term lambda/alpha is 0.34589442507378704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07167085604607586
the lambda is 200.0
the regulation term lambda/alpha is 2790.5345496560517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5750485614456667
the lambda is 200.0
the regulation term lambda/alpha is 347.79671389352205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 15.290519041695518
the lambda is 200.0
the regulation term lambda/alpha is 13.080000715124358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.32294959208742263
the lambda is 200.0
the regulation term lambda/alpha is 619.2916941225301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12630347202598746
the lambda is 200.0
the regulation term lambda/alpha is 1583.487744175783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06937423455661702
the lambda is 200.0
the regulation term lambda/alpha is 2882.914691286114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.332228410241573
the lambda is 200.0
the regulation term lambda/alpha is 11.539197111077792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.746785708592306
the lambda is 200.0
the regulation term lambda/alpha is 34.80206329965811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13920136569643793
the lambda is 200.0
the regulation term lambda/alpha is 1436.7675130152684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08293972657314316
the lambda is 200.0
the regulation term lambda/alpha is 2411.3896713129784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 471310784.0712344
the lambda is 200.0
the regulation term lambda/alpha is 4.2434844853830415e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20900620585769358
the lambda is 200.0
the regulation term lambda/alpha is 956.9093854379346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.04900878840001711
the lambda is 200.0
the regulation term lambda/alpha is 4080.9007226942626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07159574917560423
the lambda is 200.0
the regulation term lambda/alpha is 2793.4619345829637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09058332099614456
the lambda is 200.0
the regulation term lambda/alpha is 2207.9119842439036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3724788355660407
the lambda is 200.0
the regulation term lambda/alpha is 145.72173706235372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06498784560038956
the lambda is 200.0
the regulation term lambda/alpha is 3077.4985407240692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 11704.286557913802
the lambda is 200.0
the regulation term lambda/alpha is 0.017087756610399366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06955866173815418
the lambda is 200.0
the regulation term lambda/alpha is 2875.2709583872916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22360249467589802
the lambda is 200.0
the regulation term lambda/alpha is 894.4444036274783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08280352641097823
the lambda is 200.0
the regulation term lambda/alpha is 2415.35606837976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10098953048147152
the lambda is 200.0
the regulation term lambda/alpha is 1980.4033056346752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0674719534688708
the lambda is 200.0
the regulation term lambda/alpha is 2964.194598164006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08985990482793636
the lambda is 200.0
the regulation term lambda/alpha is 2225.686755210344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08210201543069434
the lambda is 200.0
the regulation term lambda/alpha is 2435.9937932197067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06368847303670647
the lambda is 200.0
the regulation term lambda/alpha is 3140.2856822259064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3948882539471733
the lambda is 200.0
the regulation term lambda/alpha is 506.47239567362584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 109.60049013463171
the lambda is 200.0
the regulation term lambda/alpha is 1.8248093576435906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10563867078532402
the lambda is 200.0
the regulation term lambda/alpha is 1893.2460860515223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08560642102252765
the lambda is 200.0
the regulation term lambda/alpha is 2336.2733497218537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18549717353391226
the lambda is 200.0
the regulation term lambda/alpha is 1078.1835442006686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08615617660401495
the lambda is 200.0
the regulation term lambda/alpha is 2321.365778790604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6753573050451105
the lambda is 200.0
the regulation term lambda/alpha is 296.1395375543336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1624130390238885
the lambda is 200.0
the regulation term lambda/alpha is 1231.4282227708516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 416.6695555359766
the lambda is 200.0
the regulation term lambda/alpha is 0.4799966720456286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0628489644513826
the lambda is 200.0
the regulation term lambda/alpha is 3182.232225237567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2978.3933741394935
the lambda is 200.0
the regulation term lambda/alpha is 0.06715029711539809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 37791410.97874251
the lambda is 200.0
the regulation term lambda/alpha is 5.292207801198506e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05354663830537369
the lambda is 200.0
the regulation term lambda/alpha is 3735.0617392526196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06689628925589967
the lambda is 200.0
the regulation term lambda/alpha is 2989.7024517299624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 148648.34158528136
the lambda is 200.0
the regulation term lambda/alpha is 0.0013454573247644176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1678937999377344
the lambda is 200.0
the regulation term lambda/alpha is 1191.2292179590468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 73.59533062918405
the lambda is 200.0
the regulation term lambda/alpha is 2.7175637134876935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1320586840663514
the lambda is 200.0
the regulation term lambda/alpha is 1514.4782140908828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.7791278009523297
the lambda is 200.0
the regulation term lambda/alpha is 71.9650243977501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0713998151572401
the lambda is 200.0
the regulation term lambda/alpha is 2801.127699834382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059687622516692046
the lambda is 200.0
the regulation term lambda/alpha is 3350.778462386714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9174277836403838
the lambda is 200.0
the regulation term lambda/alpha is 218.00081005438201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.1195840966919075
the lambda is 200.0
the regulation term lambda/alpha is 39.0656733481989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1873.4417846169042
the lambda is 200.0
the regulation term lambda/alpha is 0.10675538553811938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1755831735116776
the lambda is 200.0
the regulation term lambda/alpha is 1139.061312083521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.705773536718558
the lambda is 200.0
the regulation term lambda/alpha is 14.592390532660449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06494289870905849
the lambda is 200.0
the regulation term lambda/alpha is 3079.628473252969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08615909116228304
the lambda is 200.0
the regulation term lambda/alpha is 2321.287252476868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07072660316483881
the lambda is 200.0
the regulation term lambda/alpha is 2827.7902663283635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07677426361799716
the lambda is 200.0
the regulation term lambda/alpha is 2605.03963926157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 27.907431627633667
the lambda is 200.0
the regulation term lambda/alpha is 7.166549851974266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10808613346163468
the lambda is 200.0
the regulation term lambda/alpha is 1850.376117589499
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11705296447796233
the lambda is 200.0
the regulation term lambda/alpha is 1708.6282341670567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1293111237351087
the lambda is 200.0
the regulation term lambda/alpha is 1546.6573502964532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06028978831735902
the lambda is 200.0
the regulation term lambda/alpha is 3317.3113653546325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07919297152173288
the lambda is 200.0
the regulation term lambda/alpha is 2525.47664466807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 518.0542309760056
the lambda is 200.0
the regulation term lambda/alpha is 0.3860599683226278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38559152583046696
the lambda is 200.0
the regulation term lambda/alpha is 518.6835980620954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.19986685593734901
the lambda is 200.0
the regulation term lambda/alpha is 1000.6661637920232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06314200097715492
the lambda is 200.0
the regulation term lambda/alpha is 3167.4637627078205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1394472922260681
the lambda is 200.0
the regulation term lambda/alpha is 1434.2336578021573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17915912358976163
the lambda is 200.0
the regulation term lambda/alpha is 1116.326068093299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06215789034629965
the lambda is 200.0
the regulation term lambda/alpha is 3217.6124203337977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1962.5225716690254
the lambda is 200.0
the regulation term lambda/alpha is 0.10190965591285414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.970637873419061
the lambda is 200.0
the regulation term lambda/alpha is 206.0500681840306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8399821194143889
the lambda is 200.0
the regulation term lambda/alpha is 238.10030639632444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15646601644307975
the lambda is 200.0
the regulation term lambda/alpha is 1278.2328364112045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 42.856026287092725
the lambda is 200.0
the regulation term lambda/alpha is 4.666788251906489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1339943585508103
the lambda is 200.0
the regulation term lambda/alpha is 1492.6001524471685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 747.1730269405255
the lambda is 200.0
the regulation term lambda/alpha is 0.2676756156722449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.8238624570784654
the lambda is 200.0
the regulation term lambda/alpha is 52.30313648697642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2520565948656905
the lambda is 200.0
the regulation term lambda/alpha is 88.80771489311871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 14168.107729124022
the lambda is 200.0
the regulation term lambda/alpha is 0.014116211128807213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1258.5411391942312
the lambda is 200.0
the regulation term lambda/alpha is 0.15891415367482392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.21526046458819
the lambda is 200.0
the regulation term lambda/alpha is 21.703130450685265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.935301216140529
the lambda is 200.0
the regulation term lambda/alpha is 28.837968787071556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 1180.8657656484
the lambda is 200.0
the regulation term lambda/alpha is 0.16936726071500793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11135830837723829
the lambda is 200.0
the regulation term lambda/alpha is 1796.0042938374963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5528267661662887
the lambda is 200.0
the regulation term lambda/alpha is 361.77698375016917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05964491669849903
the lambda is 200.0
the regulation term lambda/alpha is 3353.177623014989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.701272927606537
the lambda is 200.0
the regulation term lambda/alpha is 54.035463990852435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 941.7416739658366
the lambda is 200.0
the regulation term lambda/alpha is 0.21237246426375664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07962183357044722
the lambda is 200.0
the regulation term lambda/alpha is 2511.8738294697205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.1406140684845565
the lambda is 200.0
the regulation term lambda/alpha is 63.681813695913995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 2079.369412048873
the lambda is 200.0
the regulation term lambda/alpha is 0.09618300569446832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06862822054051487
the lambda is 200.0
the regulation term lambda/alpha is 2914.253035045975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 121.33849846623227
the lambda is 200.0
the regulation term lambda/alpha is 1.648281481377147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10442279761637253
the lambda is 200.0
the regulation term lambda/alpha is 1915.2905741403144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06009922081476045
the lambda is 200.0
the regulation term lambda/alpha is 3327.8301663252137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.291133095088011
the lambda is 200.0
the regulation term lambda/alpha is 37.79908696412659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08263588570977545
the lambda is 200.0
the regulation term lambda/alpha is 2420.2560217290793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06599974296599091
the lambda is 200.0
the regulation term lambda/alpha is 3030.3148317268183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10178834857837632
the lambda is 200.0
the regulation term lambda/alpha is 1964.861428575014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 497985438.2323092
the lambda is 200.0
the regulation term lambda/alpha is 4.016181692178324e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 2027319.9809869826
the lambda is 200.0
the regulation term lambda/alpha is 9.865240903048359e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5327367423755067
the lambda is 200.0
the regulation term lambda/alpha is 375.4199477741809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 163898922.38779384
the lambda is 200.0
the regulation term lambda/alpha is 1.220264276825378e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2432987277180008
the lambda is 200.0
the regulation term lambda/alpha is 822.0347137688823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 59014.42798928692
the lambda is 200.0
the regulation term lambda/alpha is 0.003389001754559184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.351662388541274
the lambda is 200.0
the regulation term lambda/alpha is 568.7272978768565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3288643339605589
the lambda is 200.0
the regulation term lambda/alpha is 608.153513004503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08542185117212106
the lambda is 200.0
the regulation term lambda/alpha is 2341.3213042762245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 252.41863804187378
the lambda is 200.0
the regulation term lambda/alpha is 0.7923345183679422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10739258816056184
the lambda is 200.0
the regulation term lambda/alpha is 1862.3259149037503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 394181800.1171028
the lambda is 200.0
the regulation term lambda/alpha is 5.073800970531475e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9998552
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992001158e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 6894.364244580546
the lambda is 200.0
the regulation term lambda/alpha is 0.029009201270039368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2069.760449837449
the lambda is 200.0
the regulation term lambda/alpha is 0.09662953991400658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8305635530040326
the lambda is 200.0
the regulation term lambda/alpha is 240.80035691023025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 28.399965656336096
the lambda is 200.0
the regulation term lambda/alpha is 7.042262037221145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.1610805971252462
the lambda is 200.0
the regulation term lambda/alpha is 63.26950353049658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1854981841500397
the lambda is 200.0
the regulation term lambda/alpha is 1078.1776701287304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25362977217808214
the lambda is 200.0
the regulation term lambda/alpha is 788.55095867678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 38.26567308886425
the lambda is 200.0
the regulation term lambda/alpha is 5.226616543123145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.791643222929734
the lambda is 200.0
the regulation term lambda/alpha is 15.635207808289152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1440.4214523285254
the lambda is 200.0
the regulation term lambda/alpha is 0.13884825144521995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11741519383372975
the lambda is 200.0
the regulation term lambda/alpha is 1703.3570653830168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.315680434528315
the lambda is 200.0
the regulation term lambda/alpha is 633.5520929538665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11637736199885176
the lambda is 200.0
the regulation term lambda/alpha is 1718.5472893084936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3110699387037014
the lambda is 200.0
the regulation term lambda/alpha is 642.9422297552926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20630535391049404
the lambda is 200.0
the regulation term lambda/alpha is 969.4367897343584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06618727087172284
the lambda is 200.0
the regulation term lambda/alpha is 3021.7290630946068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 66.25300581569711
the lambda is 200.0
the regulation term lambda/alpha is 3.018730962280577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 799.1121710636498
the lambda is 200.0
the regulation term lambda/alpha is 0.2502777547910353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1641768522676554
the lambda is 200.0
the regulation term lambda/alpha is 1218.1985294366746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059904265303883535
the lambda is 200.0
the regulation term lambda/alpha is 3338.660427357486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07933808661758762
the lambda is 200.0
the regulation term lambda/alpha is 2520.857365315691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.318577132255925
the lambda is 200.0
the regulation term lambda/alpha is 627.7914506410099
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4665908420607042
the lambda is 200.0
the regulation term lambda/alpha is 428.6410747298372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09202017818987349
the lambda is 200.0
the regulation term lambda/alpha is 2173.4363477032402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 582.0812740382287
the lambda is 200.0
the regulation term lambda/alpha is 0.3435946300290444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9511678554658731
the lambda is 200.0
the regulation term lambda/alpha is 102.5027136644001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.419290768459127
the lambda is 200.0
the regulation term lambda/alpha is 476.9959537506399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.40114802513054343
the lambda is 200.0
the regulation term lambda/alpha is 498.5690754302357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10404636454945114
the lambda is 200.0
the regulation term lambda/alpha is 1922.219972471446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16197942368337773
the lambda is 200.0
the regulation term lambda/alpha is 1234.7247289318757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 879.1604228703558
the lambda is 200.0
the regulation term lambda/alpha is 0.2274897672793589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0998278369597335
the lambda is 200.0
the regulation term lambda/alpha is 2003.4491990512815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1695355453752687
the lambda is 200.0
the regulation term lambda/alpha is 1179.693612671596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 1778709.48650754
the lambda is 200.0
the regulation term lambda/alpha is 0.00011244107119071813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21139468663289634
the lambda is 200.0
the regulation term lambda/alpha is 946.0975731491108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.912383604098075
the lambda is 200.0
the regulation term lambda/alpha is 28.933579421348668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  26  iterations
the alpha is 12279.422174679778
the lambda is 200.0
the regulation term lambda/alpha is 0.016287411341911584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6795103771083149
the lambda is 200.0
the regulation term lambda/alpha is 119.08232466199381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0092027432435757
the lambda is 200.0
the regulation term lambda/alpha is 198.17623499238653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17179747090299347
the lambda is 200.0
the regulation term lambda/alpha is 1164.1614917191143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05940015038510638
the lambda is 200.0
the regulation term lambda/alpha is 3366.994842661993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06485756952742808
the lambda is 200.0
the regulation term lambda/alpha is 3083.6801541787745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06482355296748597
the lambda is 200.0
the regulation term lambda/alpha is 3085.298334392678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.45890864839726736
the lambda is 200.0
the regulation term lambda/alpha is 435.81658506218497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 24.65806423476481
the lambda is 200.0
the regulation term lambda/alpha is 8.110936774916208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061050898343329746
the lambda is 200.0
the regulation term lambda/alpha is 3275.9550707225826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 2481025.0286805797
the lambda is 200.0
the regulation term lambda/alpha is 8.061184296329364e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1025284221618995
the lambda is 200.0
the regulation term lambda/alpha is 1950.6786097242978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13475818350592914
the lambda is 200.0
the regulation term lambda/alpha is 1484.1399223164829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10905550433769039
the lambda is 200.0
the regulation term lambda/alpha is 1833.9285230454757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13818152396911823
the lambda is 200.0
the regulation term lambda/alpha is 1447.3715027538515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.581850842859803
the lambda is 200.0
the regulation term lambda/alpha is 126.43417102362393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09092015868417155
the lambda is 200.0
the regulation term lambda/alpha is 2199.73219244742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2097018644788029
the lambda is 200.0
the regulation term lambda/alpha is 953.7349631920722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08147501487453089
the lambda is 200.0
the regulation term lambda/alpha is 2454.740269860571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33007338650049195
the lambda is 200.0
the regulation term lambda/alpha is 605.9258582475928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09987271064806841
the lambda is 200.0
the regulation term lambda/alpha is 2002.5490316845437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.8362654
the lambda is 200.0
the regulation term lambda/alpha is 3.999999993309877e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1094646658957522
the lambda is 200.0
the regulation term lambda/alpha is 1827.073589120241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8779588682893112
the lambda is 200.0
the regulation term lambda/alpha is 227.80110461176477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5339376494169101
the lambda is 200.0
the regulation term lambda/alpha is 374.5755711709246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41025365959042925
the lambda is 200.0
the regulation term lambda/alpha is 487.5032685867253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1018.8180021355711
the lambda is 200.0
the regulation term lambda/alpha is 0.19630591487466334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06587973924447109
the lambda is 200.0
the regulation term lambda/alpha is 3035.834723902385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13040709084544463
the lambda is 200.0
the regulation term lambda/alpha is 1533.6589345209397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.107653823383592
the lambda is 200.0
the regulation term lambda/alpha is 48.68959474176289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 493220988.34671825
the lambda is 200.0
the regulation term lambda/alpha is 4.0549774791701794e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11851665293624745
the lambda is 200.0
the regulation term lambda/alpha is 1687.5265631031962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14128596835857848
the lambda is 200.0
the regulation term lambda/alpha is 1415.5687385204985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06951131875764915
the lambda is 200.0
the regulation term lambda/alpha is 2877.229256681188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29332205158233615
the lambda is 200.0
the regulation term lambda/alpha is 681.8444059050213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1496524205720822
the lambda is 200.0
the regulation term lambda/alpha is 1336.4301040735068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07426945759513497
the lambda is 200.0
the regulation term lambda/alpha is 2692.89700606486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11366407080671573
the lambda is 200.0
the regulation term lambda/alpha is 1759.5709759515598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11044109655343634
the lambda is 200.0
the regulation term lambda/alpha is 1810.9200853799116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10893557856405253
the lambda is 200.0
the regulation term lambda/alpha is 1835.9474713066577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12116785825809556
the lambda is 200.0
the regulation term lambda/alpha is 1650.6027495673543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05893501092157938
the lambda is 200.0
the regulation term lambda/alpha is 3393.5685575103357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2853594171070881
the lambda is 200.0
the regulation term lambda/alpha is 155.5985021295699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1989.6841607092742
the lambda is 200.0
the regulation term lambda/alpha is 0.10051846617138714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10766251767434375
the lambda is 200.0
the regulation term lambda/alpha is 1857.6567251098245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07091966663348286
the lambda is 200.0
the regulation term lambda/alpha is 2820.0922183350376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.3993630742923078
the lambda is 200.0
the regulation term lambda/alpha is 142.922164857855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 26.914500246937003
the lambda is 200.0
the regulation term lambda/alpha is 7.430938645155075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 112473.0779701395
the lambda is 200.0
the regulation term lambda/alpha is 0.0017782033141575272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21306182155415956
the lambda is 200.0
the regulation term lambda/alpha is 938.6946874907887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08435225058087845
the lambda is 200.0
the regulation term lambda/alpha is 2371.009648500563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 495616826.1047334
the lambda is 200.0
the regulation term lambda/alpha is 4.035375505143486e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07500176741977586
the lambda is 200.0
the regulation term lambda/alpha is 2666.6038265555007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.062497984187222445
the lambda is 200.0
the regulation term lambda/alpha is 3200.1032129431383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2102728554289443
the lambda is 200.0
the regulation term lambda/alpha is 951.1451185271238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10667047315566383
the lambda is 200.0
the regulation term lambda/alpha is 1874.9330914482841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06808530333062664
the lambda is 200.0
the regulation term lambda/alpha is 2937.4915028106298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17379545435676394
the lambda is 200.0
the regulation term lambda/alpha is 1150.7780841577357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10683956189181477
the lambda is 200.0
the regulation term lambda/alpha is 1871.965744323428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06988187291375031
the lambda is 200.0
the regulation term lambda/alpha is 2861.9725210691513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.592084599625207
the lambda is 200.0
the regulation term lambda/alpha is 26.343225944804836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.056167290003924716
the lambda is 200.0
the regulation term lambda/alpha is 3560.7913428977063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06183244493542741
the lambda is 200.0
the regulation term lambda/alpha is 3234.547820466474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3175708326780257
the lambda is 200.0
the regulation term lambda/alpha is 629.7807588733226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08013289017191119
the lambda is 200.0
the regulation term lambda/alpha is 2495.85406904624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10407433712950148
the lambda is 200.0
the regulation term lambda/alpha is 1921.703327796713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1869452752661595
the lambda is 200.0
the regulation term lambda/alpha is 1069.8317981840091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08099204178291154
the lambda is 200.0
the regulation term lambda/alpha is 2469.378417895348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22733264314806734
the lambda is 200.0
the regulation term lambda/alpha is 879.7680668751785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1262815237332259
the lambda is 200.0
the regulation term lambda/alpha is 1583.7629614171185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 240594456.2884649
the lambda is 200.0
the regulation term lambda/alpha is 8.312743488994049e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499996969.5466215
the lambda is 200.0
the regulation term lambda/alpha is 4.0000242437739673e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 414.5231847063867
the lambda is 200.0
the regulation term lambda/alpha is 0.4824820598193154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29813723266839165
the lambda is 200.0
the regulation term lambda/alpha is 670.8320131972698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 116.81135811580006
the lambda is 200.0
the regulation term lambda/alpha is 1.7121622693722258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.606113024793354
the lambda is 200.0
the regulation term lambda/alpha is 55.46137867141889
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4911155484138572
the lambda is 200.0
the regulation term lambda/alpha is 407.23613953159224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38841076768837235
the lambda is 200.0
the regulation term lambda/alpha is 514.9187835092742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06126868098210259
the lambda is 200.0
the regulation term lambda/alpha is 3264.3105220173206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12213008044359837
the lambda is 200.0
the regulation term lambda/alpha is 1637.5982008164092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07693196551992353
the lambda is 200.0
the regulation term lambda/alpha is 2599.6996001383172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07234682561719445
the lambda is 200.0
the regulation term lambda/alpha is 2764.461305576158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08787915603902367
the lambda is 200.0
the regulation term lambda/alpha is 2275.8525344871073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1475771795924822
the lambda is 200.0
the regulation term lambda/alpha is 1355.2230809145258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8777576968398142
the lambda is 200.0
the regulation term lambda/alpha is 227.85331387017033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06842418958114387
the lambda is 200.0
the regulation term lambda/alpha is 2922.94291279579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.075966407952514
the lambda is 200.0
the regulation term lambda/alpha is 16.56182149267092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 16031.569583744895
the lambda is 200.0
the regulation term lambda/alpha is 0.012475384830864515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 147.4440278948909
the lambda is 200.0
the regulation term lambda/alpha is 1.3564469368849237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08344310178240917
the lambda is 200.0
the regulation term lambda/alpha is 2396.8428273619434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 296.42211028479005
the lambda is 200.0
the regulation term lambda/alpha is 0.6747135016610208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1710296332791644
the lambda is 200.0
the regulation term lambda/alpha is 1169.3879953162766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0612311507344454
the lambda is 200.0
the regulation term lambda/alpha is 3266.31130725248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 319.74925270342663
the lambda is 200.0
the regulation term lambda/alpha is 0.6254901248682627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 42.92078239916379
the lambda is 200.0
the regulation term lambda/alpha is 4.659747302367362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8149092567668121
the lambda is 200.0
the regulation term lambda/alpha is 245.42609908925158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08229201570109497
the lambda is 200.0
the regulation term lambda/alpha is 2430.369438591098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.751863013259175
the lambda is 200.0
the regulation term lambda/alpha is 20.508901707096264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19298643493794676
the lambda is 200.0
the regulation term lambda/alpha is 1036.3422696745934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06455309077050243
the lambda is 200.0
the regulation term lambda/alpha is 3098.225005384097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11252025146049267
the lambda is 200.0
the regulation term lambda/alpha is 1777.4578122963278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.289549050718706
the lambda is 200.0
the regulation term lambda/alpha is 690.7292546930088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 12548.466182072367
the lambda is 200.0
the regulation term lambda/alpha is 0.01593820289253632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 295.3004107114144
the lambda is 200.0
the regulation term lambda/alpha is 0.6772764030980378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11227826900439072
the lambda is 200.0
the regulation term lambda/alpha is 1781.288594609335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13226594935088454
the lambda is 200.0
the regulation term lambda/alpha is 1512.1049747235077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2531828608216664
the lambda is 200.0
the regulation term lambda/alpha is 789.9428869352786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07058578488503099
the lambda is 200.0
the regulation term lambda/alpha is 2833.4316934458807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.84591817916891
the lambda is 200.0
the regulation term lambda/alpha is 41.271848307249094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30358777070589243
the lambda is 200.0
the regulation term lambda/alpha is 658.788064930832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34438577163361594
the lambda is 200.0
the regulation term lambda/alpha is 580.7440854809048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.23724947281011202
the lambda is 200.0
the regulation term lambda/alpha is 842.9944970207564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08631880996479134
the lambda is 200.0
the regulation term lambda/alpha is 2316.992091081633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5554071834805684
the lambda is 200.0
the regulation term lambda/alpha is 360.0961707888988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10877066163270044
the lambda is 200.0
the regulation term lambda/alpha is 1838.731115522356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 554.2205522197848
the lambda is 200.0
the regulation term lambda/alpha is 0.36086716596660395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.632658175956375
the lambda is 200.0
the regulation term lambda/alpha is 43.171758503143096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06061925059668464
the lambda is 200.0
the regulation term lambda/alpha is 3299.281961280767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32125232541233484
the lambda is 200.0
the regulation term lambda/alpha is 622.5635868730144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07669613210921783
the lambda is 200.0
the regulation term lambda/alpha is 2607.6934325083485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 599.6843222960382
the lambda is 200.0
the regulation term lambda/alpha is 0.33350880215485884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07420022880379241
the lambda is 200.0
the regulation term lambda/alpha is 2695.4094781683193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2145803687266291
the lambda is 200.0
the regulation term lambda/alpha is 932.0517118450654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 89.6864603339614
the lambda is 200.0
the regulation term lambda/alpha is 2.2299910070624827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2661536936896733
the lambda is 200.0
the regulation term lambda/alpha is 751.4455171649566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.43855221614204337
the lambda is 200.0
the regulation term lambda/alpha is 456.0460365687029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.298372140960034
the lambda is 200.0
the regulation term lambda/alpha is 21.50914127420055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08330443938323738
the lambda is 200.0
the regulation term lambda/alpha is 2400.8324343905765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 72.27153279376813
the lambda is 200.0
the regulation term lambda/alpha is 2.767341334391149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12837108074876538
the lambda is 200.0
the regulation term lambda/alpha is 1557.983299925778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8061348005395679
the lambda is 200.0
the regulation term lambda/alpha is 248.09746442671198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 325.28257890750444
the lambda is 200.0
the regulation term lambda/alpha is 0.6148500195482983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07275052692176226
the lambda is 200.0
the regulation term lambda/alpha is 2749.1209818326815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8729950827232338
the lambda is 200.0
the regulation term lambda/alpha is 229.0963648685363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1423492223804665
the lambda is 200.0
the regulation term lambda/alpha is 175.07780990407917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09463206436331116
the lambda is 200.0
the regulation term lambda/alpha is 2113.4485583254377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.45993231636562465
the lambda is 200.0
the regulation term lambda/alpha is 434.8465912993367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05774979623068307
the lambda is 200.0
the regulation term lambda/alpha is 3463.215683066565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.610283637678267
the lambda is 200.0
the regulation term lambda/alpha is 26.280229426641405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6285068256296076
the lambda is 200.0
the regulation term lambda/alpha is 122.81188930398048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06055996560438678
the lambda is 200.0
the regulation term lambda/alpha is 3302.511783221895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06100381470793774
the lambda is 200.0
the regulation term lambda/alpha is 3278.4835007043625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999999.71531016
the lambda is 200.0
the regulation term lambda/alpha is 4.000000002277519e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4497904744200492
the lambda is 200.0
the regulation term lambda/alpha is 137.95096845287577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16498913988231295
the lambda is 200.0
the regulation term lambda/alpha is 1212.200997851497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24273469685665663
the lambda is 200.0
the regulation term lambda/alpha is 823.9448360285593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20931656045058278
the lambda is 200.0
the regulation term lambda/alpha is 955.4905716464689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19897442451099745
the lambda is 200.0
the regulation term lambda/alpha is 1005.1543081052905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1413172.5211234568
the lambda is 200.0
the regulation term lambda/alpha is 0.00014152553705261845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22336127447687223
the lambda is 200.0
the regulation term lambda/alpha is 895.4103636291206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10757934660218287
the lambda is 200.0
the regulation term lambda/alpha is 1859.0929050682844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 497206393.1040914
the lambda is 200.0
the regulation term lambda/alpha is 4.022474424582258e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 17.227994237362992
the lambda is 200.0
the regulation term lambda/alpha is 11.60901247379411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1494567336946046
the lambda is 200.0
the regulation term lambda/alpha is 1338.1799204087652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06013826122636558
the lambda is 200.0
the regulation term lambda/alpha is 3325.669813551523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5121574473691535
the lambda is 200.0
the regulation term lambda/alpha is 390.50491411841904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13986691256183342
the lambda is 200.0
the regulation term lambda/alpha is 1429.9307558646688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.321242133734457
the lambda is 200.0
the regulation term lambda/alpha is 622.5833382283616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 1267.237119496758
the lambda is 200.0
the regulation term lambda/alpha is 0.1578236597736527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 238.68878415641197
the lambda is 200.0
the regulation term lambda/alpha is 0.8379111767100906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1504.7677725926087
the lambda is 200.0
the regulation term lambda/alpha is 0.1329108741180801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4522469012876884
the lambda is 200.0
the regulation term lambda/alpha is 442.23630815498666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.4216298563067744
the lambda is 200.0
the regulation term lambda/alpha is 474.34970984237333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12436016148071723
the lambda is 200.0
the regulation term lambda/alpha is 1608.2320706137969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11298011709729326
the lambda is 200.0
the regulation term lambda/alpha is 1770.222983817314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4246911122962914
the lambda is 200.0
the regulation term lambda/alpha is 470.93050504072556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.246007293003015
the lambda is 200.0
the regulation term lambda/alpha is 812.9840280692364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07654712080264713
the lambda is 200.0
the regulation term lambda/alpha is 2612.769728016781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07994082750610157
the lambda is 200.0
the regulation term lambda/alpha is 2501.8505091748616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0755900623314177
the lambda is 200.0
the regulation term lambda/alpha is 2645.8504442438257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 205.35747140450036
the lambda is 200.0
the regulation term lambda/alpha is 0.973911485334042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4170536305070878
the lambda is 200.0
the regulation term lambda/alpha is 141.13791863221908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1789.8029550641957
the lambda is 200.0
the regulation term lambda/alpha is 0.11174414447920414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07960351075434266
the lambda is 200.0
the regulation term lambda/alpha is 2512.4520024902204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0661442658529685
the lambda is 200.0
the regulation term lambda/alpha is 3023.6937007446454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06882354719310643
the lambda is 200.0
the regulation term lambda/alpha is 2905.982155189359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.238217868964954
the lambda is 200.0
the regulation term lambda/alpha is 38.180924314917625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3586812610564862
the lambda is 200.0
the regulation term lambda/alpha is 557.5981287979898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07223560112891518
the lambda is 200.0
the regulation term lambda/alpha is 2768.717874210948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.284883871628551
the lambda is 200.0
the regulation term lambda/alpha is 24.140350438090834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07137641654821557
the lambda is 200.0
the regulation term lambda/alpha is 2802.0459652089394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8377021488838948
the lambda is 200.0
the regulation term lambda/alpha is 238.74834303155157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 45.23049317630256
the lambda is 200.0
the regulation term lambda/alpha is 4.421795694785509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.056443752079467
the lambda is 200.0
the regulation term lambda/alpha is 12.456058333222014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.008144799957567
the lambda is 200.0
the regulation term lambda/alpha is 14.277408097652291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06657132015203392
the lambda is 200.0
the regulation term lambda/alpha is 3004.2967383438545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 9971.832598695139
the lambda is 200.0
the regulation term lambda/alpha is 0.020056493931333238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07545035373046079
the lambda is 200.0
the regulation term lambda/alpha is 2650.749666654725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1866932682045655
the lambda is 200.0
the regulation term lambda/alpha is 1071.2759057860292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499993703.84344774
the lambda is 200.0
the regulation term lambda/alpha is 4.000050369886691e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1265649061015412
the lambda is 200.0
the regulation term lambda/alpha is 1580.216871804439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 199716487.82060158
the lambda is 200.0
the regulation term lambda/alpha is 1.0014195732284912e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 24.79073913878843
the lambda is 200.0
the regulation term lambda/alpha is 8.067528720314483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.0180553691975907
the lambda is 200.0
the regulation term lambda/alpha is 99.10530853250226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07741827389111725
the lambda is 200.0
the regulation term lambda/alpha is 2583.369402956263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1177.3911740418448
the lambda is 200.0
the regulation term lambda/alpha is 0.16986707936107898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14933842450166432
the lambda is 200.0
the regulation term lambda/alpha is 1339.2400560498152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07007164460683911
the lambda is 200.0
the regulation term lambda/alpha is 2854.221577389375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08254178423332917
the lambda is 200.0
the regulation term lambda/alpha is 2423.015226259707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05465954475424439
the lambda is 200.0
the regulation term lambda/alpha is 3659.0132775386815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.49509905240154556
the lambda is 200.0
the regulation term lambda/alpha is 403.95956936268146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12994975751813206
the lambda is 200.0
the regulation term lambda/alpha is 1539.0563539304314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3732473009342806
the lambda is 200.0
the regulation term lambda/alpha is 535.837766272863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0949405283910973
the lambda is 200.0
the regulation term lambda/alpha is 2106.5819138494944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08087143434840267
the lambda is 200.0
the regulation term lambda/alpha is 2473.0611199299233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 650.9627182715633
the lambda is 200.0
the regulation term lambda/alpha is 0.3072372570445204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.732592042095712
the lambda is 200.0
the regulation term lambda/alpha is 25.864548253834343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06940941880764341
the lambda is 200.0
the regulation term lambda/alpha is 2881.4533162173066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.3079774194549927
the lambda is 200.0
the regulation term lambda/alpha is 60.45990484208054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 35.03313645620508
the lambda is 200.0
the regulation term lambda/alpha is 5.708880797756147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.056062489804972214
the lambda is 200.0
the regulation term lambda/alpha is 3567.447694452234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7360000058775206
the lambda is 200.0
the regulation term lambda/alpha is 271.7391282647387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0535498589522047
the lambda is 200.0
the regulation term lambda/alpha is 3734.8371015973667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 59.753244727912694
the lambda is 200.0
the regulation term lambda/alpha is 3.3470985703069855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 179.63056229104455
the lambda is 200.0
the regulation term lambda/alpha is 1.1133962809510782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24164608041226757
the lambda is 200.0
the regulation term lambda/alpha is 827.6567104203966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10283561685022687
the lambda is 200.0
the regulation term lambda/alpha is 1944.8514641701086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06370358548859234
the lambda is 200.0
the regulation term lambda/alpha is 3139.540709773939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1248228430984892
the lambda is 200.0
the regulation term lambda/alpha is 1602.2708266802865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1480969809147451
the lambda is 200.0
the regulation term lambda/alpha is 1350.466422506843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 224045618.48601687
the lambda is 200.0
the regulation term lambda/alpha is 8.926753459920146e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15754802147794927
the lambda is 200.0
the regulation term lambda/alpha is 1269.4542154437172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06046021155870194
the lambda is 200.0
the regulation term lambda/alpha is 3307.9606379778593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06571963904522005
the lambda is 200.0
the regulation term lambda/alpha is 3043.2303479692728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18973942144932276
the lambda is 200.0
the regulation term lambda/alpha is 1054.0772100615777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07030526531911042
the lambda is 200.0
the regulation term lambda/alpha is 2844.73714866468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6195658316459504
the lambda is 200.0
the regulation term lambda/alpha is 322.80669750408316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5284344519513485
the lambda is 200.0
the regulation term lambda/alpha is 378.47645864394445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06651205910371062
the lambda is 200.0
the regulation term lambda/alpha is 3006.973512700079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 48562.07861395781
the lambda is 200.0
the regulation term lambda/alpha is 0.004118439854889481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0933960006672669
the lambda is 200.0
the regulation term lambda/alpha is 2141.4193174343845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5628276932732638
the lambda is 200.0
the regulation term lambda/alpha is 355.34854164131565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2586904880781956
the lambda is 200.0
the regulation term lambda/alpha is 773.1246768514544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18990435508043615
the lambda is 200.0
the regulation term lambda/alpha is 1053.1617345757431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1102459325222099
the lambda is 200.0
the regulation term lambda/alpha is 1814.1258858662059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14400500999669938
the lambda is 200.0
the regulation term lambda/alpha is 1388.8405688425983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06161736839530005
the lambda is 200.0
the regulation term lambda/alpha is 3245.8380682037578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 12938.271089328051
the lambda is 200.0
the regulation term lambda/alpha is 0.015458015883201517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999955.4923815
the lambda is 200.0
the regulation term lambda/alpha is 4.00000035606098e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.083744059498027
the lambda is 200.0
the regulation term lambda/alpha is 184.54541757085784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99960935
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992003125e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  23  iterations
the alpha is 17766.221805378507
the lambda is 200.0
the regulation term lambda/alpha is 0.011257317520343714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13483481061088537
the lambda is 200.0
the regulation term lambda/alpha is 1483.296480292262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07270911909791825
the lambda is 200.0
the regulation term lambda/alpha is 2750.6866054952143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 171.38949463285894
the lambda is 200.0
the regulation term lambda/alpha is 1.1669326666049684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 4425.247891148433
the lambda is 200.0
the regulation term lambda/alpha is 0.04519520825037811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.993029088293843
the lambda is 200.0
the regulation term lambda/alpha is 20.013951548913877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8038143254647832
the lambda is 200.0
the regulation term lambda/alpha is 248.81367955759634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.671464417363385
the lambda is 200.0
the regulation term lambda/alpha is 35.264260741492635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.711392125426208
the lambda is 200.0
the regulation term lambda/alpha is 35.0177322109669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.729610338061682
the lambda is 200.0
the regulation term lambda/alpha is 115.63298137089853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09127484411696099
the lambda is 200.0
the regulation term lambda/alpha is 2191.184240684289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3537197976237888
the lambda is 200.0
the regulation term lambda/alpha is 565.4192989579766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21025185543225652
the lambda is 200.0
the regulation term lambda/alpha is 951.2401190887008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 4165.575339111224
the lambda is 200.0
the regulation term lambda/alpha is 0.04801257538716667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 518246.4250684884
the lambda is 200.0
the regulation term lambda/alpha is 0.0003859167961912505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7695833952387495
the lambda is 200.0
the regulation term lambda/alpha is 259.88086702150525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.058989314295408955
the lambda is 200.0
the regulation term lambda/alpha is 3390.4445642211117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05856936248409465
the lambda is 200.0
the regulation term lambda/alpha is 3414.754600655127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22110810273434503
the lambda is 200.0
the regulation term lambda/alpha is 904.5349199178567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 549.0036267485854
the lambda is 200.0
the regulation term lambda/alpha is 0.36429631837676263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 3327.2728774995157
the lambda is 200.0
the regulation term lambda/alpha is 0.06010928690354436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2923485195223562
the lambda is 200.0
the regulation term lambda/alpha is 684.1149745747414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1180926458700357
the lambda is 200.0
the regulation term lambda/alpha is 1693.5855617978586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20478042295123425
the lambda is 200.0
the regulation term lambda/alpha is 976.6558595673345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11055660863895832
the lambda is 200.0
the regulation term lambda/alpha is 1809.0279944560755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24128257284307775
the lambda is 200.0
the regulation term lambda/alpha is 828.9036279883894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06372150446339406
the lambda is 200.0
the regulation term lambda/alpha is 3138.6578468952116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.216202668189651
the lambda is 200.0
the regulation term lambda/alpha is 90.24445411545955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2406620681489713
the lambda is 200.0
the regulation term lambda/alpha is 89.25933224960674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08000445985328627
the lambda is 200.0
the regulation term lambda/alpha is 2499.860637354016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12581237291758351
the lambda is 200.0
the regulation term lambda/alpha is 1589.6687691521001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060921201943402566
the lambda is 200.0
the regulation term lambda/alpha is 3282.929318856929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8782659913488294
the lambda is 200.0
the regulation term lambda/alpha is 227.72144426638064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 264665.0346926842
the lambda is 200.0
the regulation term lambda/alpha is 0.000755672165884058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999978.3592174
the lambda is 200.0
the regulation term lambda/alpha is 4.0000001731262683e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05673286547302341
the lambda is 200.0
the regulation term lambda/alpha is 3525.2934667137583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 4799.731917726797
the lambda is 200.0
the regulation term lambda/alpha is 0.04166899389970973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09938904561858289
the lambda is 200.0
the regulation term lambda/alpha is 2012.2941995793324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05241241977213631
the lambda is 200.0
the regulation term lambda/alpha is 3815.889456535353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2727621682659068
the lambda is 200.0
the regulation term lambda/alpha is 733.2395151112987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 107.73028516481222
the lambda is 200.0
the regulation term lambda/alpha is 1.8564881703787202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.584478698612871
the lambda is 200.0
the regulation term lambda/alpha is 55.796118994205884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11827144686462034
the lambda is 200.0
the regulation term lambda/alpha is 1691.0252246168125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0663282271603462
the lambda is 200.0
the regulation term lambda/alpha is 3015.3074876629357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07279970067975966
the lambda is 200.0
the regulation term lambda/alpha is 2747.2640427435927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2385370366009116
the lambda is 200.0
the regulation term lambda/alpha is 838.4442217021978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10633783242717224
the lambda is 200.0
the regulation term lambda/alpha is 1880.798164068036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41227267981510807
the lambda is 200.0
the regulation term lambda/alpha is 485.1158221051514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2593945895376204
the lambda is 200.0
the regulation term lambda/alpha is 771.0261048871788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 41553.73928357507
the lambda is 200.0
the regulation term lambda/alpha is 0.004813044588722583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07875907055594214
the lambda is 200.0
the regulation term lambda/alpha is 2539.390048514362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08764491247382977
the lambda is 200.0
the regulation term lambda/alpha is 2281.9350759203367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 437794001.23997766
the lambda is 200.0
the regulation term lambda/alpha is 4.568358621487132e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 483287435.9606433
the lambda is 200.0
the regulation term lambda/alpha is 4.138324010067729e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 43.86728551556627
the lambda is 200.0
the regulation term lambda/alpha is 4.559206197726325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08445178355789572
the lambda is 200.0
the regulation term lambda/alpha is 2368.215229733905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999989.19656366
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000864274926e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 495849617.2501731
the lambda is 200.0
the regulation term lambda/alpha is 4.033480979760304e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15416576009821636
the lambda is 200.0
the regulation term lambda/alpha is 1297.3049260262683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.108112200102017
the lambda is 200.0
the regulation term lambda/alpha is 1849.9299784046175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.905663337317874
the lambda is 200.0
the regulation term lambda/alpha is 40.769206170056535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19888688858030557
the lambda is 200.0
the regulation term lambda/alpha is 1005.5967058846364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13924229350230397
the lambda is 200.0
the regulation term lambda/alpha is 1436.345200653354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08911882806418388
the lambda is 200.0
the regulation term lambda/alpha is 2244.1946819134437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.8432115
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999932543083e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 5545.515303282793
the lambda is 200.0
the regulation term lambda/alpha is 0.03606517862850464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 9523.176306849651
the lambda is 200.0
the regulation term lambda/alpha is 0.021001396336235816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11890618751931206
the lambda is 200.0
the regulation term lambda/alpha is 1681.998255704878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1668.8750489043268
the lambda is 200.0
the regulation term lambda/alpha is 0.11984120688442601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 28.965123597924897
the lambda is 200.0
the regulation term lambda/alpha is 6.9048557422461085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2376465276293652
the lambda is 200.0
the regulation term lambda/alpha is 841.586039548287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1301293945921063
the lambda is 200.0
the regulation term lambda/alpha is 1536.9317641636987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35930863670494967
the lambda is 200.0
the regulation term lambda/alpha is 556.6245271310644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3249063254866861
the lambda is 200.0
the regulation term lambda/alpha is 615.5620383826462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.17786499526354793
the lambda is 200.0
the regulation term lambda/alpha is 1124.4483474876772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.603455359498499
the lambda is 200.0
the regulation term lambda/alpha is 331.42468096763577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2708682187708866
the lambda is 200.0
the regulation term lambda/alpha is 738.3664311285246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09980221597123093
the lambda is 200.0
the regulation term lambda/alpha is 2003.9635197844923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05623969446958839
the lambda is 200.0
the regulation term lambda/alpha is 3556.2070862271485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06436483176763709
the lambda is 200.0
the regulation term lambda/alpha is 3107.2869221816386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10164233010588598
the lambda is 200.0
the regulation term lambda/alpha is 1967.6841311257804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 34.38102919342348
the lambda is 200.0
the regulation term lambda/alpha is 5.8171615187789865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5771846750149565
the lambda is 200.0
the regulation term lambda/alpha is 126.80823188831923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.21616870087218604
the lambda is 200.0
the regulation term lambda/alpha is 925.203321262748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06079555977474339
the lambda is 200.0
the regulation term lambda/alpha is 3289.713932086978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059016065733823356
the lambda is 200.0
the regulation term lambda/alpha is 3388.9077069631867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13009074096076775
the lambda is 200.0
the regulation term lambda/alpha is 1537.388429975314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 458755131.3654389
the lambda is 200.0
the regulation term lambda/alpha is 4.3596242597814645e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17463953579660776
the lambda is 200.0
the regulation term lambda/alpha is 1145.216053671421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.315669902279013
the lambda is 200.0
the regulation term lambda/alpha is 152.01381414407865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 96.5244509960193
the lambda is 200.0
the regulation term lambda/alpha is 2.0720138569682005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1009286034453029
the lambda is 200.0
the regulation term lambda/alpha is 1981.5988052226216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3053318618863552
the lambda is 200.0
the regulation term lambda/alpha is 655.0249907244865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10949739341386201
the lambda is 200.0
the regulation term lambda/alpha is 1826.5274977283675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07935965848830767
the lambda is 200.0
the regulation term lambda/alpha is 2520.1721354366296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.3512109391623663
the lambda is 200.0
the regulation term lambda/alpha is 148.01537954094914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.3647319931713446
the lambda is 200.0
the regulation term lambda/alpha is 59.44009817301822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5319048331795799
the lambda is 200.0
the regulation term lambda/alpha is 376.00711165652575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2670927016012599
the lambda is 200.0
the regulation term lambda/alpha is 157.84164785043313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06881424837578118
the lambda is 200.0
the regulation term lambda/alpha is 2906.3748383596235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06067591472139562
the lambda is 200.0
the regulation term lambda/alpha is 3296.2008223252337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1524732629664291
the lambda is 200.0
the regulation term lambda/alpha is 1311.7053843337446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1365383615179677
the lambda is 200.0
the regulation term lambda/alpha is 1464.7898054180262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1017.4113546761291
the lambda is 200.0
the regulation term lambda/alpha is 0.19657732251638343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08461132961708334
the lambda is 200.0
the regulation term lambda/alpha is 2363.7496409182922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11439773891329337
the lambda is 200.0
the regulation term lambda/alpha is 1748.286302682853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0668181251467627
the lambda is 200.0
the regulation term lambda/alpha is 2993.199817575095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3438323181682044
the lambda is 200.0
the regulation term lambda/alpha is 148.8280920886191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09301717223417857
the lambda is 200.0
the regulation term lambda/alpha is 2150.1406159336166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7650480868157215
the lambda is 200.0
the regulation term lambda/alpha is 113.31136046316729
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2043349070500163
the lambda is 200.0
the regulation term lambda/alpha is 978.7852838626578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05687256307736017
the lambda is 200.0
the regulation term lambda/alpha is 3516.634193678815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2848479071081723
the lambda is 200.0
the regulation term lambda/alpha is 702.1290836588421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12557220530102264
the lambda is 200.0
the regulation term lambda/alpha is 1592.7091470644996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37339361434376644
the lambda is 200.0
the regulation term lambda/alpha is 535.6277995045441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20804080194460714
the lambda is 200.0
the regulation term lambda/alpha is 961.3498800742555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.057844802098933105
the lambda is 200.0
the regulation term lambda/alpha is 3457.527603913936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14750185954849634
the lambda is 200.0
the regulation term lambda/alpha is 1355.9151092209997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11463997070597265
the lambda is 200.0
the regulation term lambda/alpha is 1744.5922113235515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999949.24626774
the lambda is 200.0
the regulation term lambda/alpha is 4.000000406029899e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3995314716861382
the lambda is 200.0
the regulation term lambda/alpha is 500.58634719298146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05622391767463374
the lambda is 200.0
the regulation term lambda/alpha is 3557.2049809370183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0588165708193264
the lambda is 200.0
the regulation term lambda/alpha is 3400.402254228029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09680992240235436
the lambda is 200.0
the regulation term lambda/alpha is 2065.9039387385783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 31.68445488217101
the lambda is 200.0
the regulation term lambda/alpha is 6.312243677341627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10701613760263433
the lambda is 200.0
the regulation term lambda/alpha is 1868.8770168722363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1009079819579557
the lambda is 200.0
the regulation term lambda/alpha is 1982.0037634221242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  22  iterations
the alpha is 3903393.3925725934
the lambda is 200.0
the regulation term lambda/alpha is 5.1237469526018445e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 27.43080495585455
the lambda is 200.0
the regulation term lambda/alpha is 7.291072949622429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3500174295190774
the lambda is 200.0
the regulation term lambda/alpha is 571.400116487911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 24244819.49211848
the lambda is 200.0
the regulation term lambda/alpha is 8.249184947118955e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13915000424173646
the lambda is 200.0
the regulation term lambda/alpha is 1437.297836172198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07719073477017789
the lambda is 200.0
the regulation term lambda/alpha is 2590.9845345489393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.220986663993298
the lambda is 200.0
the regulation term lambda/alpha is 90.0500679461097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.629632641045524
the lambda is 200.0
the regulation term lambda/alpha is 317.6455395766871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.307729068276134
the lambda is 200.0
the regulation term lambda/alpha is 649.9223525433559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999999.40825856
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000047339314e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 20654.848961165262
the lambda is 200.0
the regulation term lambda/alpha is 0.009682956306097182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06056027810204014
the lambda is 200.0
the regulation term lambda/alpha is 3302.494741900177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05817441086253756
the lambda is 200.0
the regulation term lambda/alpha is 3437.937695193636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5847816642475275
the lambda is 200.0
the regulation term lambda/alpha is 342.0079873012975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1213.5489035269895
the lambda is 200.0
the regulation term lambda/alpha is 0.1648058841458563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 471545319.4492343
the lambda is 200.0
the regulation term lambda/alpha is 4.241373877564946e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06672601569341674
the lambda is 200.0
the regulation term lambda/alpha is 2997.3316692387525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5547491110939533
the lambda is 200.0
the regulation term lambda/alpha is 360.5233356852151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0893638763690934
the lambda is 200.0
the regulation term lambda/alpha is 2238.040784779231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10280831825957067
the lambda is 200.0
the regulation term lambda/alpha is 1945.3678786481028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07754654666484416
the lambda is 200.0
the regulation term lambda/alpha is 2579.0961506564454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5428540576221911
the lambda is 200.0
the regulation term lambda/alpha is 368.42314650099485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0788146481963393
the lambda is 200.0
the regulation term lambda/alpha is 2537.5993495748344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060092997766951116
the lambda is 200.0
the regulation term lambda/alpha is 3328.174786280881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08241795486778178
the lambda is 200.0
the regulation term lambda/alpha is 2426.6557004580873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1439.9188036257456
the lambda is 200.0
the regulation term lambda/alpha is 0.13889672077091836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12626843011560532
the lambda is 200.0
the regulation term lambda/alpha is 1583.9271923860113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15475086304396526
the lambda is 200.0
the regulation term lambda/alpha is 1292.3999004979978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1782037379211296
the lambda is 200.0
the regulation term lambda/alpha is 1122.3109140870947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 382907606.3901681
the lambda is 200.0
the regulation term lambda/alpha is 5.223192139886814e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 27.27705984822593
the lambda is 200.0
the regulation term lambda/alpha is 7.332168536962306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0683789848441705
the lambda is 200.0
the regulation term lambda/alpha is 2924.8752442842174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06140056210499101
the lambda is 200.0
the regulation term lambda/alpha is 3257.299170291192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999851.2141102
the lambda is 200.0
the regulation term lambda/alpha is 4.000001190287473e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.058123611739362785
the lambda is 200.0
the regulation term lambda/alpha is 3440.9423987077344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999998.3985466
the lambda is 200.0
the regulation term lambda/alpha is 4.000000012811627e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1225658751783591
the lambda is 200.0
the regulation term lambda/alpha is 1631.7755632141327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06883291752131057
the lambda is 200.0
the regulation term lambda/alpha is 2905.586559484135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0633686948999134
the lambda is 200.0
the regulation term lambda/alpha is 3156.1325401428353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10426577517560437
the lambda is 200.0
the regulation term lambda/alpha is 1918.1749683744267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07997605774555545
the lambda is 200.0
the regulation term lambda/alpha is 2500.7484194369995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 245896400.86236152
the lambda is 200.0
the regulation term lambda/alpha is 8.133506602723654e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 435056721.79812163
the lambda is 200.0
the regulation term lambda/alpha is 4.5971017106317814e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 607.6086255245854
the lambda is 200.0
the regulation term lambda/alpha is 0.3291592508702915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.4988590045984216
the lambda is 200.0
the regulation term lambda/alpha is 80.03652852440186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05953874049475775
the lambda is 200.0
the regulation term lambda/alpha is 3359.1573879129933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6877810690095268
the lambda is 200.0
the regulation term lambda/alpha is 290.7902078317158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06856744878532625
the lambda is 200.0
the regulation term lambda/alpha is 2916.8359555883158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.999998
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000016e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 920.4268522432395
the lambda is 200.0
the regulation term lambda/alpha is 0.21729048811707893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 73.94485358231574
the lambda is 200.0
the regulation term lambda/alpha is 2.7047183179199767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06035548990671759
the lambda is 200.0
the regulation term lambda/alpha is 3313.7002169829116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06979994172033643
the lambda is 200.0
the regulation term lambda/alpha is 2865.3319053091614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0748579233498409
the lambda is 200.0
the regulation term lambda/alpha is 2671.72786860945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 86.36624813987463
the lambda is 200.0
the regulation term lambda/alpha is 2.3157194425777257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11322380630421897
the lambda is 200.0
the regulation term lambda/alpha is 1766.4129702778555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054742555713261074
the lambda is 200.0
the regulation term lambda/alpha is 3653.4647934157583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.621319331438128
the lambda is 200.0
the regulation term lambda/alpha is 43.27768450005837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10898369687244945
the lambda is 200.0
the regulation term lambda/alpha is 1835.1368667010142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08087122513551816
the lambda is 200.0
the regulation term lambda/alpha is 2473.067517709228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36001883457114553
the lambda is 200.0
the regulation term lambda/alpha is 555.5264913799302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08807236595699634
the lambda is 200.0
the regulation term lambda/alpha is 2270.8598528811553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39195420056940905
the lambda is 200.0
the regulation term lambda/alpha is 510.2636984358153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15692516216577218
the lambda is 200.0
the regulation term lambda/alpha is 1274.4928680635967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 10163.655349885465
the lambda is 200.0
the regulation term lambda/alpha is 0.019677959662637894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.162647995025873
the lambda is 200.0
the regulation term lambda/alpha is 1229.6493416238256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 8322.133899180953
the lambda is 200.0
the regulation term lambda/alpha is 0.02403229777637723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499867096.2114655
the lambda is 200.0
the regulation term lambda/alpha is 4.0010635129980895e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 311.59655486577583
the lambda is 200.0
the regulation term lambda/alpha is 0.641855620278448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9597325395387653
the lambda is 200.0
the regulation term lambda/alpha is 208.39139214360424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999986.25778306
the lambda is 200.0
the regulation term lambda/alpha is 4.0000001099377385e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06091014295697307
the lambda is 200.0
the regulation term lambda/alpha is 3283.525375096887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06268455661013056
the lambda is 200.0
the regulation term lambda/alpha is 3190.5785222971117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19259035378418826
the lambda is 200.0
the regulation term lambda/alpha is 1038.4736102832792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 491220313.6248168
the lambda is 200.0
the regulation term lambda/alpha is 4.0714928607931224e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07256959206348468
the lambda is 200.0
the regulation term lambda/alpha is 2755.9752551046145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05948565213931753
the lambda is 200.0
the regulation term lambda/alpha is 3362.155289675447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12296366655725532
the lambda is 200.0
the regulation term lambda/alpha is 1626.496717279282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08512080498827058
the lambda is 200.0
the regulation term lambda/alpha is 2349.601839733065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05962373262511009
the lambda is 200.0
the regulation term lambda/alpha is 3354.3689935938614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0959317322200745
the lambda is 200.0
the regulation term lambda/alpha is 2084.815893256104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08970025017986008
the lambda is 200.0
the regulation term lambda/alpha is 2229.648184915597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09602372117527377
the lambda is 200.0
the regulation term lambda/alpha is 2082.8186780528586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0641090684502857
the lambda is 200.0
the regulation term lambda/alpha is 3119.68345250708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16264564855056604
the lambda is 200.0
the regulation term lambda/alpha is 1229.6670816730802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.515167102903396
the lambda is 200.0
the regulation term lambda/alpha is 21.019073846740255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07904698872849862
the lambda is 200.0
the regulation term lambda/alpha is 2530.1406570582553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.31362178811301
the lambda is 200.0
the regulation term lambda/alpha is 46.3647509735641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06341413077911011
the lambda is 200.0
the regulation term lambda/alpha is 3153.8711883737437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 53067.91102745614
the lambda is 200.0
the regulation term lambda/alpha is 0.00376875584751253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 18722.4216703391
the lambda is 200.0
the regulation term lambda/alpha is 0.010682378782059427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 50.02641546904311
the lambda is 200.0
the regulation term lambda/alpha is 3.997887878330243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8642910661154041
the lambda is 200.0
the regulation term lambda/alpha is 231.40352578085665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 58.50549522504653
the lambda is 200.0
the regulation term lambda/alpha is 3.418482302058677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 455469.1804282716
the lambda is 200.0
the regulation term lambda/alpha is 0.0004391076467829122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9604731860805773
the lambda is 200.0
the regulation term lambda/alpha is 208.230695971997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06874679980856707
the lambda is 200.0
the regulation term lambda/alpha is 2909.226328453422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 75835.13945087924
the lambda is 200.0
the regulation term lambda/alpha is 0.0026372998249649974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09945514035254044
the lambda is 200.0
the regulation term lambda/alpha is 2010.956892635779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1020766539400677
the lambda is 200.0
the regulation term lambda/alpha is 1959.3118727953806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21883580767893257
the lambda is 200.0
the regulation term lambda/alpha is 913.9272138380217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05936611844921997
the lambda is 200.0
the regulation term lambda/alpha is 3368.924989951535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12713030307165293
the lambda is 200.0
the regulation term lambda/alpha is 1573.189044371871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 80.98177147186328
the lambda is 200.0
the regulation term lambda/alpha is 2.46969159064999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1894622658709798
the lambda is 200.0
the regulation term lambda/alpha is 1055.6191708178778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7059782427829607
the lambda is 200.0
the regulation term lambda/alpha is 283.29484944408705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13957838477134804
the lambda is 200.0
the regulation term lambda/alpha is 1432.8866201427415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08298478450420102
the lambda is 200.0
the regulation term lambda/alpha is 2410.0803682857695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05686615228217311
the lambda is 200.0
the regulation term lambda/alpha is 3517.0306407859025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7259148832339796
the lambda is 200.0
the regulation term lambda/alpha is 275.5143951712246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09450331354041508
the lambda is 200.0
the regulation term lambda/alpha is 2116.327909650157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0421962641146778
the lambda is 200.0
the regulation term lambda/alpha is 191.90243420215623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.5220984399836595
the lambda is 200.0
the regulation term lambda/alpha is 79.29904591721478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08096938497897563
the lambda is 200.0
the regulation term lambda/alpha is 2470.069397858606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09079148845267715
the lambda is 200.0
the regulation term lambda/alpha is 2202.849665849956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.775258507470783
the lambda is 200.0
the regulation term lambda/alpha is 257.97846534117184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 70.30801944906834
the lambda is 200.0
the regulation term lambda/alpha is 2.8446257136411233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 2863.186904293438
the lambda is 200.0
the regulation term lambda/alpha is 0.06985223343264589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.9567915279024
the lambda is 200.0
the regulation term lambda/alpha is 28.74888505683074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13241862041785335
the lambda is 200.0
the regulation term lambda/alpha is 1510.36160450011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.54256954263503
the lambda is 200.0
the regulation term lambda/alpha is 12.090020204209608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07462098375660896
the lambda is 200.0
the regulation term lambda/alpha is 2680.211247982731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13362088551827989
the lambda is 200.0
the regulation term lambda/alpha is 1496.7719995587006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 37.395238871744525
the lambda is 200.0
the regulation term lambda/alpha is 5.3482744337038595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.709288293634512
the lambda is 200.0
the regulation term lambda/alpha is 117.00776325726416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07398607983373677
the lambda is 200.0
the regulation term lambda/alpha is 2703.2112047218156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.059219516504584874
the lambda is 200.0
the regulation term lambda/alpha is 3377.264993112797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2320953122976925
the lambda is 200.0
the regulation term lambda/alpha is 162.32510423810217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 497269121.8117681
the lambda is 200.0
the regulation term lambda/alpha is 4.02196700392964e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06329954327579207
the lambda is 200.0
the regulation term lambda/alpha is 3159.580459034479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0645007293406971
the lambda is 200.0
the regulation term lambda/alpha is 3100.740131845437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  31  iterations
the alpha is 55515489.4878304
the lambda is 200.0
the regulation term lambda/alpha is 3.6025981549499296e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061716745400902474
the lambda is 200.0
the regulation term lambda/alpha is 3240.611582818096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.09113031943937
the lambda is 200.0
the regulation term lambda/alpha is 48.886245214356094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11342940767170243
the lambda is 200.0
the regulation term lambda/alpha is 1763.211182225847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4441191283061604
the lambda is 200.0
the regulation term lambda/alpha is 450.32962386192673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1197255136907284
the lambda is 200.0
the regulation term lambda/alpha is 1670.4877167337484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 70090.64262994684
the lambda is 200.0
the regulation term lambda/alpha is 0.0028534479424868085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0785387404129573
the lambda is 200.0
the regulation term lambda/alpha is 2546.5139744844196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11172210251194586
the lambda is 200.0
the regulation term lambda/alpha is 1790.1560703139742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06467024287783074
the lambda is 200.0
the regulation term lambda/alpha is 3092.6124767742435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 53.54732487809982
the lambda is 200.0
the regulation term lambda/alpha is 3.7350138490634004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06783856001873359
the lambda is 200.0
the regulation term lambda/alpha is 2948.1757859360528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3611762265449544
the lambda is 200.0
the regulation term lambda/alpha is 553.7463024995269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 36.54763936961992
the lambda is 200.0
the regulation term lambda/alpha is 5.472309660750598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05978485131151612
the lambda is 200.0
the regulation term lambda/alpha is 3345.3290526370315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06819325856574289
the lambda is 200.0
the regulation term lambda/alpha is 2932.841225165777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.40859286710849646
the lambda is 200.0
the regulation term lambda/alpha is 489.4848052912599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07548698979941773
the lambda is 200.0
the regulation term lambda/alpha is 2649.463179435759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2778466067152929
the lambda is 200.0
the regulation term lambda/alpha is 719.8216395888483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 71.51860557947063
the lambda is 200.0
the regulation term lambda/alpha is 2.796475104338582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05338107730205161
the lambda is 200.0
the regulation term lambda/alpha is 3746.6460046941265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.499694713652588
the lambda is 200.0
the regulation term lambda/alpha is 13.793393857574427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999992
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000006e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8266223489200585
the lambda is 200.0
the regulation term lambda/alpha is 241.9484547705372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061933772633256584
the lambda is 200.0
the regulation term lambda/alpha is 3229.2558889365314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07003480930791663
the lambda is 200.0
the regulation term lambda/alpha is 2855.7227752370322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11057056026942151
the lambda is 200.0
the regulation term lambda/alpha is 1808.799733967798
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07797204103607544
the lambda is 200.0
the regulation term lambda/alpha is 2565.0219917606837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 174.27466695408015
the lambda is 200.0
the regulation term lambda/alpha is 1.1476137266278539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07614996019610586
the lambda is 200.0
the regulation term lambda/alpha is 2626.3966453160087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 35.6345678392217
the lambda is 200.0
the regulation term lambda/alpha is 5.612527725953424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.6834505069521475
the lambda is 200.0
the regulation term lambda/alpha is 26.02997179705079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17487878892666497
the lambda is 200.0
the regulation term lambda/alpha is 1143.6492740344258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1544025284264871
the lambda is 200.0
the regulation term lambda/alpha is 1295.31557571107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20754727725363456
the lambda is 200.0
the regulation term lambda/alpha is 963.6358647846228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08160626325107503
the lambda is 200.0
the regulation term lambda/alpha is 2450.792280301663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.768528169339255
the lambda is 200.0
the regulation term lambda/alpha is 34.670889025563795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999263.49071354
the lambda is 200.0
the regulation term lambda/alpha is 4.000005892082971e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.849171117198558
the lambda is 200.0
the regulation term lambda/alpha is 34.192878955435546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061392458853787066
the lambda is 200.0
the regulation term lambda/alpha is 3257.729104421801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07838893654564838
the lambda is 200.0
the regulation term lambda/alpha is 2551.38044746319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10343654357383301
the lambda is 200.0
the regulation term lambda/alpha is 1933.5526216345386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05964117978899732
the lambda is 200.0
the regulation term lambda/alpha is 3353.3877214966874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13184223138911624
the lambda is 200.0
the regulation term lambda/alpha is 1516.9646166691796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17433968782347165
the lambda is 200.0
the regulation term lambda/alpha is 1147.185718277245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.145081130923929
the lambda is 200.0
the regulation term lambda/alpha is 1378.5390196942071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 375.8238373174102
the lambda is 200.0
the regulation term lambda/alpha is 0.5321642220131068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08557133462732247
the lambda is 200.0
the regulation term lambda/alpha is 2337.231280440273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05416824740125351
the lambda is 200.0
the regulation term lambda/alpha is 3692.19994360334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5354878484478711
the lambda is 200.0
the regulation term lambda/alpha is 373.49120167657674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4726183299948825
the lambda is 200.0
the regulation term lambda/alpha is 423.1744460739929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09908313003851597
the lambda is 200.0
the regulation term lambda/alpha is 2018.5070851340206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2471149649615107
the lambda is 200.0
the regulation term lambda/alpha is 809.3398958300681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06310520796541262
the lambda is 200.0
the regulation term lambda/alpha is 3169.3105283737937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06948898990078368
the lambda is 200.0
the regulation term lambda/alpha is 2878.153795091277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8042356624118064
the lambda is 200.0
the regulation term lambda/alpha is 248.68332672568133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16332183533205286
the lambda is 200.0
the regulation term lambda/alpha is 1224.5760010801744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20992633664439742
the lambda is 200.0
the regulation term lambda/alpha is 952.7151437829735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.820892305799099
the lambda is 200.0
the regulation term lambda/alpha is 13.494464157312867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10647350042627803
the lambda is 200.0
the regulation term lambda/alpha is 1878.4016605002996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4018790577961877
the lambda is 200.0
the regulation term lambda/alpha is 142.6656592719263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 29265.834351993934
the lambda is 200.0
the regulation term lambda/alpha is 0.006833907333531178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.7458300031359286
the lambda is 200.0
the regulation term lambda/alpha is 53.39270597773105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34781902336278786
the lambda is 200.0
the regulation term lambda/alpha is 575.0116772405307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28246169093433515
the lambda is 200.0
the regulation term lambda/alpha is 708.0606199673806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1286653623937109
the lambda is 200.0
the regulation term lambda/alpha is 1554.4199019780315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22654913924506556
the lambda is 200.0
the regulation term lambda/alpha is 882.8106814550882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6105668658697019
the lambda is 200.0
the regulation term lambda/alpha is 327.5644506439382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09997130385501415
the lambda is 200.0
the regulation term lambda/alpha is 2000.5740876407388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7427889351445265
the lambda is 200.0
the regulation term lambda/alpha is 269.2554917516178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12058796058036597
the lambda is 200.0
the regulation term lambda/alpha is 1658.5403637099394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07649472005554334
the lambda is 200.0
the regulation term lambda/alpha is 2614.5595389430623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5730792038319485
the lambda is 200.0
the regulation term lambda/alpha is 348.9918996583387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08747610940509692
the lambda is 200.0
the regulation term lambda/alpha is 2286.3385370034152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08427830031883755
the lambda is 200.0
the regulation term lambda/alpha is 2373.090098440165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05997433267568538
the lambda is 200.0
the regulation term lambda/alpha is 3334.759906067007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.672195957672588
the lambda is 200.0
the regulation term lambda/alpha is 297.5322861096639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16783276657211968
the lambda is 200.0
the regulation term lambda/alpha is 1191.662415420279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7121016012109505
the lambda is 200.0
the regulation term lambda/alpha is 116.81549731542931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499659308.1937026
the lambda is 200.0
the regulation term lambda/alpha is 4.0027273928511733e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06847984161576862
the lambda is 200.0
the regulation term lambda/alpha is 2920.5675025093324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21175147010609077
the lambda is 200.0
the regulation term lambda/alpha is 944.5034780622628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1243078035944074
the lambda is 200.0
the regulation term lambda/alpha is 1608.9094507096413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8894579452546754
the lambda is 200.0
the regulation term lambda/alpha is 105.85046388690196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5301753352540791
the lambda is 200.0
the regulation term lambda/alpha is 377.233693649956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12495803364425379
the lambda is 200.0
the regulation term lambda/alpha is 1600.5373497584405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.643118166238684
the lambda is 200.0
the regulation term lambda/alpha is 121.71979113214152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08156918062823147
the lambda is 200.0
the regulation term lambda/alpha is 2451.9064487302094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14128881961211393
the lambda is 200.0
the regulation term lambda/alpha is 1415.5401718909418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.002407843219808
the lambda is 200.0
the regulation term lambda/alpha is 39.98074652611085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29783537827433565
the lambda is 200.0
the regulation term lambda/alpha is 671.5118974743838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 23180.207908561766
the lambda is 200.0
the regulation term lambda/alpha is 0.008628050308648381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06534098258420148
the lambda is 200.0
the regulation term lambda/alpha is 3060.8661224564617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999394.43329793
the lambda is 200.0
the regulation term lambda/alpha is 4.000004844539484e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09526610405870409
the lambda is 200.0
the regulation term lambda/alpha is 2099.382587082155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7445186234234974
the lambda is 200.0
the regulation term lambda/alpha is 268.6299492151668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 118132554.75026296
the lambda is 200.0
the regulation term lambda/alpha is 1.6930134155043727e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09107167346072129
the lambda is 200.0
the regulation term lambda/alpha is 2196.0725261764173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.058936765750288986
the lambda is 200.0
the regulation term lambda/alpha is 3393.4675147833223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 174528239.04845133
the lambda is 200.0
the regulation term lambda/alpha is 1.1459463585401636e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29510479576464294
the lambda is 200.0
the regulation term lambda/alpha is 677.7253466240089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09579131750018043
the lambda is 200.0
the regulation term lambda/alpha is 2087.871899242051
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08083499705818943
the lambda is 200.0
the regulation term lambda/alpha is 2474.1758802320373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5143620543454105
the lambda is 200.0
the regulation term lambda/alpha is 388.8311711767401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.060651195577526566
the lambda is 200.0
the regulation term lambda/alpha is 3297.5442296822116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0410797220193662
the lambda is 200.0
the regulation term lambda/alpha is 192.10824663077975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2837.5337448558957
the lambda is 200.0
the regulation term lambda/alpha is 0.0704837432726838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.2109382737651035
the lambda is 200.0
the regulation term lambda/alpha is 47.495353053744736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 76665428.77271122
the lambda is 200.0
the regulation term lambda/alpha is 2.608737774009415e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06522999625768754
the lambda is 200.0
the regulation term lambda/alpha is 3066.074068284642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07668583775971348
the lambda is 200.0
the regulation term lambda/alpha is 2608.0434907248155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.44644903830364374
the lambda is 200.0
the regulation term lambda/alpha is 447.97946202310743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0789655084251215
the lambda is 200.0
the regulation term lambda/alpha is 185.36273721291033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07559745148775983
the lambda is 200.0
the regulation term lambda/alpha is 2645.591829671434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12548073004860696
the lambda is 200.0
the regulation term lambda/alpha is 1593.8702294968064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.5181620378278942
the lambda is 200.0
the regulation term lambda/alpha is 385.97964613229607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.898718775968373
the lambda is 200.0
the regulation term lambda/alpha is 105.33418773298706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 57.261791061790795
the lambda is 200.0
the regulation term lambda/alpha is 3.4927304279424547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 436081640.2261471
the lambda is 200.0
the regulation term lambda/alpha is 4.5862971872946134e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6154955333357356
the lambda is 200.0
the regulation term lambda/alpha is 324.9414320134564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.512326312095543
the lambda is 200.0
the regulation term lambda/alpha is 132.24659149312265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26148977832925413
the lambda is 200.0
the regulation term lambda/alpha is 764.8482524933366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06435796815736024
the lambda is 200.0
the regulation term lambda/alpha is 3107.618306267601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.40523932357745
the lambda is 200.0
the regulation term lambda/alpha is 19.221086010661555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06336429603018115
the lambda is 200.0
the regulation term lambda/alpha is 3156.3516448559244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 479177324.8661543
the lambda is 200.0
the regulation term lambda/alpha is 4.1738202043651543e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0032907732951786
the lambda is 200.0
the regulation term lambda/alpha is 199.34400407483656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0963981198365452
the lambda is 200.0
the regulation term lambda/alpha is 2074.7292617234075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.557397844110339
the lambda is 200.0
the regulation term lambda/alpha is 13.738719113245669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.233823596635165
the lambda is 200.0
the regulation term lambda/alpha is 162.09772656758398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32839336882724784
the lambda is 200.0
the regulation term lambda/alpha is 609.0256959640695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08608371216855949
the lambda is 200.0
the regulation term lambda/alpha is 2323.319882028117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3689182072488338
the lambda is 200.0
the regulation term lambda/alpha is 542.1255879222596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9758263449624816
the lambda is 200.0
the regulation term lambda/alpha is 204.9544993660625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11474593418265475
the lambda is 200.0
the regulation term lambda/alpha is 1742.981147215519
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13736791478427401
the lambda is 200.0
the regulation term lambda/alpha is 1455.9440631684988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08911383976467314
the lambda is 200.0
the regulation term lambda/alpha is 2244.3203045469577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054833688381187816
the lambda is 200.0
the regulation term lambda/alpha is 3647.392796371061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06686463668163845
the lambda is 200.0
the regulation term lambda/alpha is 2991.117725685954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2639062094753308
the lambda is 200.0
the regulation term lambda/alpha is 757.8449949988594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.208194033538979
the lambda is 200.0
the regulation term lambda/alpha is 47.526325641359584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 497190101.0399484
the lambda is 200.0
the regulation term lambda/alpha is 4.0226062341480594e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0593208557562741
the lambda is 200.0
the regulation term lambda/alpha is 3371.4955296956737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.086281049852073
the lambda is 200.0
the regulation term lambda/alpha is 2318.0061014892112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.98736364
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992101091e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08937805372028247
the lambda is 200.0
the regulation term lambda/alpha is 2237.6857816340457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19436984766394858
the lambda is 200.0
the regulation term lambda/alpha is 1028.9661817597632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29984851238909954
the lambda is 200.0
the regulation term lambda/alpha is 667.0034758767429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1025020735986189
the lambda is 200.0
the regulation term lambda/alpha is 1951.1800393733183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10759540684183821
the lambda is 200.0
the regulation term lambda/alpha is 1858.815407371372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.590667067283219
the lambda is 200.0
the regulation term lambda/alpha is 55.69995665215617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4876460878085206
the lambda is 200.0
the regulation term lambda/alpha is 410.1335066560241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10756502215934717
the lambda is 200.0
the regulation term lambda/alpha is 1859.3404806231467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12168774080508638
the lambda is 200.0
the regulation term lambda/alpha is 1643.550933535289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08284711595294691
the lambda is 200.0
the regulation term lambda/alpha is 2414.0852424312534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9652508687298903
the lambda is 200.0
the regulation term lambda/alpha is 207.2000207191388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999987.3553869
the lambda is 200.0
the regulation term lambda/alpha is 4.0000001011569074e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9997706
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992001835e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07800420229320972
the lambda is 200.0
the regulation term lambda/alpha is 2563.9644290985852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13114020884109429
the lambda is 200.0
the regulation term lambda/alpha is 1525.085263836546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22927702447115797
the lambda is 200.0
the regulation term lambda/alpha is 872.3072033114208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 44.6411551114842
the lambda is 200.0
the regulation term lambda/alpha is 4.480170808764507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 54.59905653922363
the lambda is 200.0
the regulation term lambda/alpha is 3.663066958974304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05754139052671733
the lambda is 200.0
the regulation term lambda/alpha is 3475.7588958010497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06125833113201902
the lambda is 200.0
the regulation term lambda/alpha is 3264.8620408704264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 163.9317982949658
the lambda is 200.0
the regulation term lambda/alpha is 1.2200195574023776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05185442768367019
the lambda is 200.0
the regulation term lambda/alpha is 3856.951256314478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07417761391938962
the lambda is 200.0
the regulation term lambda/alpha is 2696.2312405646294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 1.5076804190269792
the lambda is 200.0
the regulation term lambda/alpha is 132.65410724712814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05786874255588409
the lambda is 200.0
the regulation term lambda/alpha is 3456.0972152947534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 57.16487399445453
the lambda is 200.0
the regulation term lambda/alpha is 3.4986519872221122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12596229464661465
the lambda is 200.0
the regulation term lambda/alpha is 1587.7767276397833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3613345943851775
the lambda is 200.0
the regulation term lambda/alpha is 553.5036033300561
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05957226480899711
the lambda is 200.0
the regulation term lambda/alpha is 3357.2670208401123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.34105377272976
the lambda is 200.0
the regulation term lambda/alpha is 21.410860580192708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08901149457646418
the lambda is 200.0
the regulation term lambda/alpha is 2246.9008182779426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 236.05813743949227
the lambda is 200.0
the regulation term lambda/alpha is 0.8472489115155588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 468513953.3423673
the lambda is 200.0
the regulation term lambda/alpha is 4.268816298281082e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41272458102563775
the lambda is 200.0
the regulation term lambda/alpha is 484.5846581344675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12757210995888396
the lambda is 200.0
the regulation term lambda/alpha is 1567.7407864811462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2552.8237536052047
the lambda is 200.0
the regulation term lambda/alpha is 0.07834461729586761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4608974782413244
the lambda is 200.0
the regulation term lambda/alpha is 433.9359823862622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0797382590187561
the lambda is 200.0
the regulation term lambda/alpha is 2508.2062545779413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.468686409016924
the lambda is 200.0
the regulation term lambda/alpha is 136.17610864518824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 151645384.54672748
the lambda is 200.0
the regulation term lambda/alpha is 1.3188663842147646e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5431613675869691
the lambda is 200.0
the regulation term lambda/alpha is 368.2146999675501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05459148286375019
the lambda is 200.0
the regulation term lambda/alpha is 3663.5751496100847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14801138980148132
the lambda is 200.0
the regulation term lambda/alpha is 1351.2473618972692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 58704.91253588879
the lambda is 200.0
the regulation term lambda/alpha is 0.003406869908506065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 11410.108750120213
the lambda is 200.0
the regulation term lambda/alpha is 0.01752831672159942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5430798168747641
the lambda is 200.0
the regulation term lambda/alpha is 368.2699923391198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05917279406849474
the lambda is 200.0
the regulation term lambda/alpha is 3379.93165860129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9284439242533208
the lambda is 200.0
the regulation term lambda/alpha is 215.4141944122746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3371082648605277
the lambda is 200.0
the regulation term lambda/alpha is 149.57651916156675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.50466832697232
the lambda is 200.0
the regulation term lambda/alpha is 396.29988511438637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 123.77026242545264
the lambda is 200.0
the regulation term lambda/alpha is 1.6158970343983947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1617539.6172250775
the lambda is 200.0
the regulation term lambda/alpha is 0.00012364457591654176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061818021947269874
the lambda is 200.0
the regulation term lambda/alpha is 3235.302484615213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12196158381909893
the lambda is 200.0
the regulation term lambda/alpha is 1639.8606326452152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.17414152501996
the lambda is 200.0
the regulation term lambda/alpha is 170.3372172248146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 164.97061354675455
the lambda is 200.0
the regulation term lambda/alpha is 1.2123371290203617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 60.55400296446614
the lambda is 200.0
the regulation term lambda/alpha is 3.302836975407927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07009914465297032
the lambda is 200.0
the regulation term lambda/alpha is 2853.101860088465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07717286856985256
the lambda is 200.0
the regulation term lambda/alpha is 2591.584370340869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10558715861200954
the lambda is 200.0
the regulation term lambda/alpha is 1894.169732655841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.194860470330619
the lambda is 200.0
the regulation term lambda/alpha is 1026.3754350005456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17807989199558819
the lambda is 200.0
the regulation term lambda/alpha is 1123.0914268802167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999953.6624056
the lambda is 200.0
the regulation term lambda/alpha is 4.0000003707007896e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 15171520.221763192
the lambda is 200.0
the regulation term lambda/alpha is 1.3182594563800183e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 74.47124379175995
the lambda is 200.0
the regulation term lambda/alpha is 2.6856003715910743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 355699815.2083494
the lambda is 200.0
the regulation term lambda/alpha is 5.622718692807052e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1383337007563183
the lambda is 200.0
the regulation term lambda/alpha is 1445.7792924394466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08524157369388197
the lambda is 200.0
the regulation term lambda/alpha is 2346.2729667361195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0685077777998041
the lambda is 200.0
the regulation term lambda/alpha is 2919.3765499801675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12284005655210305
the lambda is 200.0
the regulation term lambda/alpha is 1628.1334087075195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16408029666207713
the lambda is 200.0
the regulation term lambda/alpha is 1218.9153973307311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8750168108988501
the lambda is 200.0
the regulation term lambda/alpha is 228.56703723732176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05981203896834445
the lambda is 200.0
the regulation term lambda/alpha is 3343.8084280298503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07032094127388214
the lambda is 200.0
the regulation term lambda/alpha is 2844.1029994329997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 215172604.71271858
the lambda is 200.0
the regulation term lambda/alpha is 9.294863547663243e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 352.5736867695113
the lambda is 200.0
the regulation term lambda/alpha is 0.5672573067846279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15222697987216297
the lambda is 200.0
the regulation term lambda/alpha is 1313.8275499386234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 24.454883504763213
the lambda is 200.0
the regulation term lambda/alpha is 8.178325607686698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09730345382887229
the lambda is 200.0
the regulation term lambda/alpha is 2055.4254975546937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4582446890174112
the lambda is 200.0
the regulation term lambda/alpha is 436.448047938862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08676932803139231
the lambda is 200.0
the regulation term lambda/alpha is 2304.9619553080083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06149525268650888
the lambda is 200.0
the regulation term lambda/alpha is 3252.2835708889925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 88949.18113716779
the lambda is 200.0
the regulation term lambda/alpha is 0.002248474886931018
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 57.87739542710718
the lambda is 200.0
the regulation term lambda/alpha is 3.455580516782014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06165124279899157
the lambda is 200.0
the regulation term lambda/alpha is 3244.054635720521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15031015664138736
the lambda is 200.0
the regulation term lambda/alpha is 1330.5820742184678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17478910344299045
the lambda is 200.0
the regulation term lambda/alpha is 1144.23608829387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13148220406506647
the lambda is 200.0
the regulation term lambda/alpha is 1521.1184009436456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.140045328756845
the lambda is 200.0
the regulation term lambda/alpha is 24.569887749082618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07942426889086902
the lambda is 200.0
the regulation term lambda/alpha is 2518.122014756033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.493316320471676
the lambda is 200.0
the regulation term lambda/alpha is 44.510554284548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999994.065765
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000474738804e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3183649248805538
the lambda is 200.0
the regulation term lambda/alpha is 628.2099074671536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13436332755205968
the lambda is 200.0
the regulation term lambda/alpha is 1488.5013912930156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16405256516152678
the lambda is 200.0
the regulation term lambda/alpha is 1219.121443197668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2960300558556703
the lambda is 200.0
the regulation term lambda/alpha is 675.6070744975643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0640447236815275
the lambda is 200.0
the regulation term lambda/alpha is 3122.817751459614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.30719057773854513
the lambda is 200.0
the regulation term lambda/alpha is 651.0616356541483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22348002293317484
the lambda is 200.0
the regulation term lambda/alpha is 894.934577932293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.062174322347354
the lambda is 200.0
the regulation term lambda/alpha is 28.319890004290237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23614046495123395
the lambda is 200.0
the regulation term lambda/alpha is 846.9535284488518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05696103749645236
the lambda is 200.0
the regulation term lambda/alpha is 3511.1720009042388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.464445921079615
the lambda is 200.0
the regulation term lambda/alpha is 44.79839235047448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28580812378849957
the lambda is 200.0
the regulation term lambda/alpha is 699.7701722012691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1771.175876692138
the lambda is 200.0
the regulation term lambda/alpha is 0.11291933377814606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06778843190368998
the lambda is 200.0
the regulation term lambda/alpha is 2950.355899722667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2643683968812079
the lambda is 200.0
the regulation term lambda/alpha is 756.5200771326257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 290395577.14197165
the lambda is 200.0
the regulation term lambda/alpha is 6.887157234568414e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.98427329376265
the lambda is 200.0
the regulation term lambda/alpha is 11.775599493765124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.9653155782620946
the lambda is 200.0
the regulation term lambda/alpha is 67.44644700420572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13742808970759415
the lambda is 200.0
the regulation term lambda/alpha is 1455.306556509227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11833550609093672
the lambda is 200.0
the regulation term lambda/alpha is 1690.1098124032778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.86899804429052
the lambda is 200.0
the regulation term lambda/alpha is 69.7107481122241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 345123932.7861542
the lambda is 200.0
the regulation term lambda/alpha is 5.795019730605702e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12682216059449455
the lambda is 200.0
the regulation term lambda/alpha is 1577.0114549576767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0905923010747853
the lambda is 200.0
the regulation term lambda/alpha is 2207.693122121901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05690375499373047
the lambda is 200.0
the regulation term lambda/alpha is 3514.7065430398325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3993048442810171
the lambda is 200.0
the regulation term lambda/alpha is 500.8704574073407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06349144754310725
the lambda is 200.0
the regulation term lambda/alpha is 3150.0305590640514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999977.94170016
the lambda is 200.0
the regulation term lambda/alpha is 4.0000001764664067e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.542483889780645
the lambda is 200.0
the regulation term lambda/alpha is 14.768339517902097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061700458282597945
the lambda is 200.0
the regulation term lambda/alpha is 3241.467009596073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08498717785682848
the lambda is 200.0
the regulation term lambda/alpha is 2353.2961682399314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5827753174447826
the lambda is 200.0
the regulation term lambda/alpha is 343.18543358513085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7859825528464457
the lambda is 200.0
the regulation term lambda/alpha is 111.98317681281151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.060527476935237016
the lambda is 200.0
the regulation term lambda/alpha is 3304.2844362073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.228152398820369
the lambda is 200.0
the regulation term lambda/alpha is 876.6070443881933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06575611956123299
the lambda is 200.0
the regulation term lambda/alpha is 3041.5420090864286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.44981364944681795
the lambda is 200.0
the regulation term lambda/alpha is 444.62857062243563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 19.556440269873928
the lambda is 200.0
the regulation term lambda/alpha is 10.226810055411445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10929775908353324
the lambda is 200.0
the regulation term lambda/alpha is 1829.8636831807828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.490094097298532
the lambda is 200.0
the regulation term lambda/alpha is 80.31824990749433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061355509098940574
the lambda is 200.0
the regulation term lambda/alpha is 3259.6909867944264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.167915935311781
the lambda is 200.0
the regulation term lambda/alpha is 1191.072185189847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0753359736350821
the lambda is 200.0
the regulation term lambda/alpha is 2654.7742114381454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.108992914254191
the lambda is 200.0
the regulation term lambda/alpha is 39.146658325165426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6591600482816239
the lambda is 200.0
the regulation term lambda/alpha is 303.41644722155655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07341748043993568
the lambda is 200.0
the regulation term lambda/alpha is 2724.146876214637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 15.982599644904406
the lambda is 200.0
the regulation term lambda/alpha is 12.513608827320171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07256182846640685
the lambda is 200.0
the regulation term lambda/alpha is 2756.270124761145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05147474946944433
the lambda is 200.0
the regulation term lambda/alpha is 3885.4001634086826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.6795712158374796
the lambda is 200.0
the regulation term lambda/alpha is 74.63880743975358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08128842985421923
the lambda is 200.0
the regulation term lambda/alpha is 2460.374746549728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14040352468969788
the lambda is 200.0
the regulation term lambda/alpha is 1424.4656638215793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 61.166682543425836
the lambda is 200.0
the regulation term lambda/alpha is 3.2697539196769125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 12.942569841071746
the lambda is 200.0
the regulation term lambda/alpha is 15.452881649927294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4473764450094297
the lambda is 200.0
the regulation term lambda/alpha is 138.18105213028875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16764049591775904
the lambda is 200.0
the regulation term lambda/alpha is 1193.0291598404474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.054850707268558216
the lambda is 200.0
the regulation term lambda/alpha is 3646.2610959739613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07917000544271006
the lambda is 200.0
the regulation term lambda/alpha is 2526.2092490915184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16273104083902395
the lambda is 200.0
the regulation term lambda/alpha is 1229.0218201077143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11710441821642947
the lambda is 200.0
the regulation term lambda/alpha is 1707.8774912690737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07980430191878027
the lambda is 200.0
the regulation term lambda/alpha is 2506.1305617778257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24435101095534031
the lambda is 200.0
the regulation term lambda/alpha is 818.494669688736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 300550.4936188954
the lambda is 200.0
the regulation term lambda/alpha is 0.0006654455881666406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1051868.822751512
the lambda is 200.0
the regulation term lambda/alpha is 0.0001901377773293381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.92578155
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999925937475e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7884308164868303
the lambda is 200.0
the regulation term lambda/alpha is 111.82987798928524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 73.65841772970484
the lambda is 200.0
the regulation term lambda/alpha is 2.7152361693936355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7646650743792383
the lambda is 200.0
the regulation term lambda/alpha is 261.5524190932373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11210348198321966
the lambda is 200.0
the regulation term lambda/alpha is 1784.0659046606352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25660043927760856
the lambda is 200.0
the regulation term lambda/alpha is 779.421892507463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08355230227341051
the lambda is 200.0
the regulation term lambda/alpha is 2393.71022171878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 282.62843884000466
the lambda is 200.0
the regulation term lambda/alpha is 0.7076428713998578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06981212139881794
the lambda is 200.0
the regulation term lambda/alpha is 2864.832009006768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1291141425602791
the lambda is 200.0
the regulation term lambda/alpha is 1549.0169863198887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 18.269488519747398
the lambda is 200.0
the regulation term lambda/alpha is 10.947213972838977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9135438904428255
the lambda is 200.0
the regulation term lambda/alpha is 218.92763127456664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 32.34594907044543
the lambda is 200.0
the regulation term lambda/alpha is 6.183154482943909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 10.090467283660642
the lambda is 200.0
the regulation term lambda/alpha is 19.820687623045696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9044390539226032
the lambda is 200.0
the regulation term lambda/alpha is 221.13153908225073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061880726582672144
the lambda is 200.0
the regulation term lambda/alpha is 3232.024105806218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5128352010689746
the lambda is 200.0
the regulation term lambda/alpha is 389.98882990697956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06812810091821746
the lambda is 200.0
the regulation term lambda/alpha is 2935.6461915779014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3658742985793028
the lambda is 200.0
the regulation term lambda/alpha is 546.6358275959913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15369852855738675
the lambda is 200.0
the regulation term lambda/alpha is 1301.2486318327085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.965334462002782
the lambda is 200.0
the regulation term lambda/alpha is 101.76384929219081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.6510422174131434
the lambda is 200.0
the regulation term lambda/alpha is 121.13560627986875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1630989900442862
the lambda is 200.0
the regulation term lambda/alpha is 1226.2491628286236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12652505233623348
the lambda is 200.0
the regulation term lambda/alpha is 1580.7146198091332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 132.37366957062358
the lambda is 200.0
the regulation term lambda/alpha is 1.510874486208125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.9618066882674046
the lambda is 200.0
the regulation term lambda/alpha is 67.52635166645392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16247519780540315
the lambda is 200.0
the regulation term lambda/alpha is 1230.9571103864134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08920493850300304
the lambda is 200.0
the regulation term lambda/alpha is 2242.028337851128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08648643408444488
the lambda is 200.0
the regulation term lambda/alpha is 2312.5014011413755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17139052351425005
the lambda is 200.0
the regulation term lambda/alpha is 1166.9256613442299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08238579924981841
the lambda is 200.0
the regulation term lambda/alpha is 2427.602837153283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08372444898864967
the lambda is 200.0
the regulation term lambda/alpha is 2388.788489096101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05420102983882046
the lambda is 200.0
the regulation term lambda/alpha is 3689.966788357106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18049859027012072
the lambda is 200.0
the regulation term lambda/alpha is 1108.041894957157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8812034889017945
the lambda is 200.0
the regulation term lambda/alpha is 226.96233335305027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.19976770209992
the lambda is 200.0
the regulation term lambda/alpha is 24.390934873530746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.19320942503052407
the lambda is 200.0
the regulation term lambda/alpha is 1035.1461890039946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 355972328.89102185
the lambda is 200.0
the regulation term lambda/alpha is 5.61841423526008e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1118.3192629983505
the lambda is 200.0
the regulation term lambda/alpha is 0.17883980596361684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5677980386764213
the lambda is 200.0
the regulation term lambda/alpha is 352.2379197825597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  39  iterations
the alpha is 36796023.49830265
the lambda is 200.0
the regulation term lambda/alpha is 5.435369939070338e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06511741893867949
the lambda is 200.0
the regulation term lambda/alpha is 3071.3748066141607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22420569489661005
the lambda is 200.0
the regulation term lambda/alpha is 892.038001497811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12221975665332985
the lambda is 200.0
the regulation term lambda/alpha is 1636.3966471254714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0715348142780633
the lambda is 200.0
the regulation term lambda/alpha is 2795.841465703386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10199460304940489
the lambda is 200.0
the regulation term lambda/alpha is 1960.8880668237175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22747515865562382
the lambda is 200.0
the regulation term lambda/alpha is 879.2168832060531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1456674907508664
the lambda is 200.0
the regulation term lambda/alpha is 174.57072109894705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06041946894960796
the lambda is 200.0
the regulation term lambda/alpha is 3310.1912922605675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.46477577588976776
the lambda is 200.0
the regulation term lambda/alpha is 430.31502581458676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06670641057053173
the lambda is 200.0
the regulation term lambda/alpha is 2998.2125899058965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 117802197.03964557
the lambda is 200.0
the regulation term lambda/alpha is 1.6977612050197272e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13747301026031972
the lambda is 200.0
the regulation term lambda/alpha is 1454.83102189498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0593696082087954
the lambda is 200.0
the regulation term lambda/alpha is 3368.726963745917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08002720069616445
the lambda is 200.0
the regulation term lambda/alpha is 2499.1502671614203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.14802123058272
the lambda is 200.0
the regulation term lambda/alpha is 12.385418445030293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 262.3500274181186
the lambda is 200.0
the regulation term lambda/alpha is 0.7623403053099412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08966592042368826
the lambda is 200.0
the regulation term lambda/alpha is 2230.5018345315875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 94.02454849792935
the lambda is 200.0
the regulation term lambda/alpha is 2.1271040722349706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1405004476317213
the lambda is 200.0
the regulation term lambda/alpha is 1423.4830092800735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2024963424478632
the lambda is 200.0
the regulation term lambda/alpha is 987.672160308249
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 164599968.76791
the lambda is 200.0
the regulation term lambda/alpha is 1.2150670592289414e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  32  iterations
the alpha is 88661.28672475797
the lambda is 200.0
the regulation term lambda/alpha is 0.0022557759692895542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06014629461621228
the lambda is 200.0
the regulation term lambda/alpha is 3325.225623227179
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5876557935729202
the lambda is 200.0
the regulation term lambda/alpha is 340.3352816178484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6763266615326902
the lambda is 200.0
the regulation term lambda/alpha is 295.71509061429043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10246165119765278
the lambda is 200.0
the regulation term lambda/alpha is 1951.949804265712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4707673647626231
the lambda is 200.0
the regulation term lambda/alpha is 424.838285255493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09648897234216541
the lambda is 200.0
the regulation term lambda/alpha is 2072.7757291348057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.225062312147274
the lambda is 200.0
the regulation term lambda/alpha is 163.25700171891052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0429992391778455
the lambda is 200.0
the regulation term lambda/alpha is 191.75469404719027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05265036878569598
the lambda is 200.0
the regulation term lambda/alpha is 3798.643857824902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499998545.3379908
the lambda is 200.0
the regulation term lambda/alpha is 4.00001163732993e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09700420390009519
the lambda is 200.0
the regulation term lambda/alpha is 2061.76631484941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 203894123.6465208
the lambda is 200.0
the regulation term lambda/alpha is 9.809012463092277e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.933839193177239
the lambda is 200.0
the regulation term lambda/alpha is 50.84091905609041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 6205.45271300525
the lambda is 200.0
the regulation term lambda/alpha is 0.03222971944993545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10418426857312184
the lambda is 200.0
the regulation term lambda/alpha is 1919.6756164739957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11460477405197304
the lambda is 200.0
the regulation term lambda/alpha is 1745.1279988502083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 193.3258791429951
the lambda is 200.0
the regulation term lambda/alpha is 1.0345226458381618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1477.9353719097928
the lambda is 200.0
the regulation term lambda/alpha is 0.13532391456438272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  25  iterations
the alpha is 21317.679939493795
the lambda is 200.0
the regulation term lambda/alpha is 0.009381883983982412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 29.515038266885497
the lambda is 200.0
the regulation term lambda/alpha is 6.776206698142442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10608771977121823
the lambda is 200.0
the regulation term lambda/alpha is 1885.2323382131956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.079394126280955
the lambda is 200.0
the regulation term lambda/alpha is 2519.078039756397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 402935885.887914
the lambda is 200.0
the regulation term lambda/alpha is 4.963568820862847e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7049585254858437
the lambda is 200.0
the regulation term lambda/alpha is 283.7046333501164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.2239684510773436
the lambda is 200.0
the regulation term lambda/alpha is 62.03534651003381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 419.2739902848329
the lambda is 200.0
the regulation term lambda/alpha is 0.4770150417967268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07330181646727718
the lambda is 200.0
the regulation term lambda/alpha is 2728.4453460888303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 146.50548768297062
the lambda is 200.0
the regulation term lambda/alpha is 1.3651365772235673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.318276033269615
the lambda is 200.0
the regulation term lambda/alpha is 628.3853607996235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.802568962435568
the lambda is 200.0
the regulation term lambda/alpha is 249.1997689432906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.47870363190563986
the lambda is 200.0
the regulation term lambda/alpha is 417.7950336491769
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.3691288791313925
the lambda is 200.0
the regulation term lambda/alpha is 84.41921491131676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 95161.27410330446
the lambda is 200.0
the regulation term lambda/alpha is 0.0021016952734668674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 62.22623333132948
the lambda is 200.0
the regulation term lambda/alpha is 3.2140785211131297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12919018192451184
the lambda is 200.0
the regulation term lambda/alpha is 1548.105258624557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 437.78673724262086
the lambda is 200.0
the regulation term lambda/alpha is 0.4568434422195852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1356544561885172
the lambda is 200.0
the regulation term lambda/alpha is 1474.3341694729338
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 42787.74322558102
the lambda is 200.0
the regulation term lambda/alpha is 0.004674235772276681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09041773911868971
the lambda is 200.0
the regulation term lambda/alpha is 2211.955330330298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.407552516894333
the lambda is 200.0
the regulation term lambda/alpha is 31.213165943263732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 117.11162382906359
the lambda is 200.0
the regulation term lambda/alpha is 1.7077724094400781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07596090827347472
the lambda is 200.0
the regulation term lambda/alpha is 2632.933235605337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.702758053542435
the lambda is 200.0
the regulation term lambda/alpha is 42.528235074595536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 244.69220592119564
the lambda is 200.0
the regulation term lambda/alpha is 0.8173533735864518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1880813053693342
the lambda is 200.0
the regulation term lambda/alpha is 1063.3699059418007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07487813763882788
the lambda is 200.0
the regulation term lambda/alpha is 2671.0066022834744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 80102550.28087793
the lambda is 200.0
the regulation term lambda/alpha is 2.4967994064946017e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22317489932408308
the lambda is 200.0
the regulation term lambda/alpha is 896.1581280230369
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7501329007205428
the lambda is 200.0
the regulation term lambda/alpha is 266.61942144903827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.485852544751568
the lambda is 200.0
the regulation term lambda/alpha is 14.830356429919302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05693809954847297
the lambda is 200.0
the regulation term lambda/alpha is 3512.5865033435916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 967.6568755618366
the lambda is 200.0
the regulation term lambda/alpha is 0.2066848332823315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24134794126020076
the lambda is 200.0
the regulation term lambda/alpha is 828.6791217513518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31432808756288283
the lambda is 200.0
the regulation term lambda/alpha is 636.2778507981379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 4446.151304434822
the lambda is 200.0
the regulation term lambda/alpha is 0.04498272467707287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08812606814672434
the lambda is 200.0
the regulation term lambda/alpha is 2269.4760382025966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1154544236537015
the lambda is 200.0
the regulation term lambda/alpha is 1732.285292072375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8183109495130483
the lambda is 200.0
the regulation term lambda/alpha is 244.40587055448037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06558412603518458
the lambda is 200.0
the regulation term lambda/alpha is 3049.518413841544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26633837029661417
the lambda is 200.0
the regulation term lambda/alpha is 750.9244716683712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2197228629566339
the lambda is 200.0
the regulation term lambda/alpha is 910.2375479217811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.2278434918648906
the lambda is 200.0
the regulation term lambda/alpha is 61.96087279450149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07446376912990983
the lambda is 200.0
the regulation term lambda/alpha is 2685.8699517490054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 767.5027228308388
the lambda is 200.0
the regulation term lambda/alpha is 0.26058539474925213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 125.07659144202195
the lambda is 200.0
the regulation term lambda/alpha is 1.5990202298781708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.42750621629034424
the lambda is 200.0
the regulation term lambda/alpha is 467.8294545877864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 404256490.5955621
the lambda is 200.0
the regulation term lambda/alpha is 4.947354084664277e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.318080946261821
the lambda is 200.0
the regulation term lambda/alpha is 86.27826406257452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.0953765576203867
the lambda is 200.0
the regulation term lambda/alpha is 95.44823782276629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 497556584.0852166
the lambda is 200.0
the regulation term lambda/alpha is 4.019643320924198e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 346068761.13713944
the lambda is 200.0
the regulation term lambda/alpha is 5.779198311422983e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2692930676255074
the lambda is 200.0
the regulation term lambda/alpha is 742.6852899092454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07950684292328239
the lambda is 200.0
the regulation term lambda/alpha is 2515.5067494377013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 90.18809972339002
the lambda is 200.0
the regulation term lambda/alpha is 2.2175874712229975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07349232546683211
the lambda is 200.0
the regulation term lambda/alpha is 2721.3725886284847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999596.9210188
the lambda is 200.0
the regulation term lambda/alpha is 4.0000032246344496e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18565738179457175
the lambda is 200.0
the regulation term lambda/alpha is 1077.2531534528384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17609753690367558
the lambda is 200.0
the regulation term lambda/alpha is 1135.7342272731444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09783519813779323
the lambda is 200.0
the regulation term lambda/alpha is 2044.2540497369425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5390875644128769
the lambda is 200.0
the regulation term lambda/alpha is 370.9972427537279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5931452261471396
the lambda is 200.0
the regulation term lambda/alpha is 337.18555116616017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499905666.8139155
the lambda is 200.0
the regulation term lambda/alpha is 4.0007548078955433e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 392450.7069100521
the lambda is 200.0
the regulation term lambda/alpha is 0.000509618141790834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9860698081694899
the lambda is 200.0
the regulation term lambda/alpha is 100.70139487409807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1063671726290826
the lambda is 200.0
the regulation term lambda/alpha is 1880.2793668064144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6611423920280495
the lambda is 200.0
the regulation term lambda/alpha is 302.5066950955927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11048370944069939
the lambda is 200.0
the regulation term lambda/alpha is 1810.2216246400312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.47969586383066787
the lambda is 200.0
the regulation term lambda/alpha is 416.9308411435455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0806193306053299
the lambda is 200.0
the regulation term lambda/alpha is 2480.794599735583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06314039888305222
the lambda is 200.0
the regulation term lambda/alpha is 3167.544132409383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09960217907279434
the lambda is 200.0
the regulation term lambda/alpha is 2007.988197264538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9557135775291874
the lambda is 200.0
the regulation term lambda/alpha is 209.26771859521062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99999815
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000015e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07913970925088118
the lambda is 200.0
the regulation term lambda/alpha is 2527.1763302285963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11523597580779148
the lambda is 200.0
the regulation term lambda/alpha is 1735.5691102368169
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.4549148
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999963606815e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07293336496045505
the lambda is 200.0
the regulation term lambda/alpha is 2742.22915819723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10232053842615672
the lambda is 200.0
the regulation term lambda/alpha is 1954.6417862562084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9376028911817709
the lambda is 200.0
the regulation term lambda/alpha is 213.30992244266284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20095546537288797
the lambda is 200.0
the regulation term lambda/alpha is 995.245387473712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.99855334
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920115733e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1567.4558617889772
the lambda is 200.0
the regulation term lambda/alpha is 0.12759529941196232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.054567074798926626
the lambda is 200.0
the regulation term lambda/alpha is 3665.2138810258184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 393341.81299006986
the lambda is 200.0
the regulation term lambda/alpha is 0.0005084636145841152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.22163400997383897
the lambda is 200.0
the regulation term lambda/alpha is 902.388582075501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 217067564.22237787
the lambda is 200.0
the regulation term lambda/alpha is 9.213721115657207e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 325238252.55239594
the lambda is 200.0
the regulation term lambda/alpha is 6.149338167649267e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3233053394456586
the lambda is 200.0
the regulation term lambda/alpha is 151.13669841593878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9891423991517008
the lambda is 200.0
the regulation term lambda/alpha is 202.195356473974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15915698339956386
the lambda is 200.0
the regulation term lambda/alpha is 1256.6209520187983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 22542959.29353607
the lambda is 200.0
the regulation term lambda/alpha is 8.871949658239752e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.513640159242359
the lambda is 200.0
the regulation term lambda/alpha is 21.022447417848046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05461234802842077
the lambda is 200.0
the regulation term lambda/alpha is 3662.175446034991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7733710980826479
the lambda is 200.0
the regulation term lambda/alpha is 258.6080608595831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 111864.58742709855
the lambda is 200.0
the regulation term lambda/alpha is 0.0017878759006762417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06523543380846843
the lambda is 200.0
the regulation term lambda/alpha is 3065.818502674498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 10231.375321146495
the lambda is 200.0
the regulation term lambda/alpha is 0.019547714136401034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.134598095428386
the lambda is 200.0
the regulation term lambda/alpha is 38.951442018036616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07482519651373952
the lambda is 200.0
the regulation term lambda/alpha is 2672.89642150523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 11.641119120214606
the lambda is 200.0
the regulation term lambda/alpha is 17.18047877825624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16748969126548155
the lambda is 200.0
the regulation term lambda/alpha is 1194.1033414587146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 2387.58130456163
the lambda is 200.0
the regulation term lambda/alpha is 0.0837667808915604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 65.23075855967359
the lambda is 200.0
the regulation term lambda/alpha is 3.066038237421975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08448874455319857
the lambda is 200.0
the regulation term lambda/alpha is 2367.1792149079624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10965389264513746
the lambda is 200.0
the regulation term lambda/alpha is 1823.9206577667162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 1372243.9991216671
the lambda is 200.0
the regulation term lambda/alpha is 0.00014574667488290283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.1160405324512817
the lambda is 200.0
the regulation term lambda/alpha is 64.18401747895972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 2939494.6324264803
the lambda is 200.0
the regulation term lambda/alpha is 6.803890634592006e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6609933847545857
the lambda is 200.0
the regulation term lambda/alpha is 120.40987148756786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.492843648265927
the lambda is 200.0
the regulation term lambda/alpha is 16.00916537747281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0331934322976626
the lambda is 200.0
the regulation term lambda/alpha is 193.57459479318496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 77.94775067146023
the lambda is 200.0
the regulation term lambda/alpha is 2.565821313343272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 105512959.3317413
the lambda is 200.0
the regulation term lambda/alpha is 1.895501758899433e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39677633242048066
the lambda is 200.0
the regulation term lambda/alpha is 504.0623234252076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31946323125039927
the lambda is 200.0
the regulation term lambda/alpha is 626.0501379679513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10092834554662318
the lambda is 200.0
the regulation term lambda/alpha is 1981.6038687329055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 426446886.3742693
the lambda is 200.0
the regulation term lambda/alpha is 4.6899158228223253e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054994173169298666
the lambda is 200.0
the regulation term lambda/alpha is 3636.748922186779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5991696439227279
the lambda is 200.0
the regulation term lambda/alpha is 333.79528156769084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 9704.453321254008
the lambda is 200.0
the regulation term lambda/alpha is 0.02060909495663956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1608766261691108
the lambda is 200.0
the regulation term lambda/alpha is 172.28359628533428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 98.32771384171629
the lambda is 200.0
the regulation term lambda/alpha is 2.0340145436712924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16155875935343506
the lambda is 200.0
the regulation term lambda/alpha is 1237.9396870860385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999566.62875104
the lambda is 200.0
the regulation term lambda/alpha is 4.0000034669729967e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4241778099173796
the lambda is 200.0
the regulation term lambda/alpha is 471.5003833862869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 328792.79490116204
the lambda is 200.0
the regulation term lambda/alpha is 0.0006082858356434536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0737271020453721
the lambda is 200.0
the regulation term lambda/alpha is 2712.7066499496864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2829313829946716
the lambda is 200.0
the regulation term lambda/alpha is 155.89298278225272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 69.55762184344337
the lambda is 200.0
the regulation term lambda/alpha is 2.875313944029735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09429293777546259
the lambda is 200.0
the regulation term lambda/alpha is 2121.0496217251707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 1686811.4940651758
the lambda is 200.0
the regulation term lambda/alpha is 0.0001185668942283555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05983184442162081
the lambda is 200.0
the regulation term lambda/alpha is 3342.7015652508967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 302127115.0155542
the lambda is 200.0
the regulation term lambda/alpha is 6.619730241349028e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08278973245878106
the lambda is 200.0
the regulation term lambda/alpha is 2415.7585012075624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0897147828705366
the lambda is 200.0
the regulation term lambda/alpha is 2229.287009350634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06805886727263438
the lambda is 200.0
the regulation term lambda/alpha is 2938.6325105709993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7629745758667303
the lambda is 200.0
the regulation term lambda/alpha is 262.1319324733754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09017257010109239
the lambda is 200.0
the regulation term lambda/alpha is 2217.9693866525063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.44365411740396404
the lambda is 200.0
the regulation term lambda/alpha is 450.8016316185619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7390327745983705
the lambda is 200.0
the regulation term lambda/alpha is 115.0064581423372
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 130.69239030582924
the lambda is 200.0
the regulation term lambda/alpha is 1.5303109808611364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06055355305112839
the lambda is 200.0
the regulation term lambda/alpha is 3302.8615155105763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06803625656439986
the lambda is 200.0
the regulation term lambda/alpha is 2939.609115776227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6518076723103831
the lambda is 200.0
the regulation term lambda/alpha is 306.8389779627546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2658721193135625
the lambda is 200.0
the regulation term lambda/alpha is 752.2413426288045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 25984.32017532283
the lambda is 200.0
the regulation term lambda/alpha is 0.007696949493023062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23673590342376216
the lambda is 200.0
the regulation term lambda/alpha is 844.8232697597874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09644909307898308
the lambda is 200.0
the regulation term lambda/alpha is 2073.632769529705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061877845785667844
the lambda is 200.0
the regulation term lambda/alpha is 3232.1745765481064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13142781089867367
the lambda is 200.0
the regulation term lambda/alpha is 1521.7479362430615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09288795162193866
the lambda is 200.0
the regulation term lambda/alpha is 2153.1317733651385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.03111555216545
the lambda is 200.0
the regulation term lambda/alpha is 28.4449883544303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 3465.0023827867285
the lambda is 200.0
the regulation term lambda/alpha is 0.057720018027563366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5003760774853465
the lambda is 200.0
the regulation term lambda/alpha is 399.6993641364819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 21816.433087407313
the lambda is 200.0
the regulation term lambda/alpha is 0.009167401435363062
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25510774180281853
the lambda is 200.0
the regulation term lambda/alpha is 783.982479663776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.264106359448563
the lambda is 200.0
the regulation term lambda/alpha is 158.21453511810932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14487500174042314
the lambda is 200.0
the regulation term lambda/alpha is 1380.5004148220544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07370344606479085
the lambda is 200.0
the regulation term lambda/alpha is 2713.5773247859406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08216444034931307
the lambda is 200.0
the regulation term lambda/alpha is 2434.1430325542538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11957657020147382
the lambda is 200.0
the regulation term lambda/alpha is 1672.5684610540447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09501763903094058
the lambda is 200.0
the regulation term lambda/alpha is 2104.8723378074465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 18337.24168330335
the lambda is 200.0
the regulation term lambda/alpha is 0.010906765775035101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 494388567.8666738
the lambda is 200.0
the regulation term lambda/alpha is 4.0454009861719895e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 3600836.9491157914
the lambda is 200.0
the regulation term lambda/alpha is 5.554264267620096e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05745175945926864
the lambda is 200.0
the regulation term lambda/alpha is 3481.1814621933945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2464643726195647
the lambda is 200.0
the regulation term lambda/alpha is 811.4763114615118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.08746284267737
the lambda is 200.0
the regulation term lambda/alpha is 183.9143298980159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16994025078474667
the lambda is 200.0
the regulation term lambda/alpha is 1176.884222992752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1971.1841607674742
the lambda is 200.0
the regulation term lambda/alpha is 0.101461854240007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11285171409811909
the lambda is 200.0
the regulation term lambda/alpha is 1772.237148530236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18794081629200354
the lambda is 200.0
the regulation term lambda/alpha is 1064.164793714954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 323821947.10427636
the lambda is 200.0
the regulation term lambda/alpha is 6.17623363050178e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07195356260403753
the lambda is 200.0
the regulation term lambda/alpha is 2779.570500221172
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7886942019195108
the lambda is 200.0
the regulation term lambda/alpha is 253.58370774533822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07757032935394288
the lambda is 200.0
the regulation term lambda/alpha is 2578.3054122076387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.196327645345006
the lambda is 200.0
the regulation term lambda/alpha is 1018.7052345508479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 269958666.7734251
the lambda is 200.0
the regulation term lambda/alpha is 7.408541551579781e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.6833257979410523
the lambda is 200.0
the regulation term lambda/alpha is 74.5343707996481
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.067930810391439
the lambda is 200.0
the regulation term lambda/alpha is 2944.1721488016437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1146.7672654915461
the lambda is 200.0
the regulation term lambda/alpha is 0.1744033039818875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 310607688.5537854
the lambda is 200.0
the regulation term lambda/alpha is 6.438990642221905e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3281491259197482
the lambda is 200.0
the regulation term lambda/alpha is 609.4789965977595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 1353.9744293400897
the lambda is 200.0
the regulation term lambda/alpha is 0.14771327705020065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499975456.0580421
the lambda is 200.0
the regulation term lambda/alpha is 4.0001963611746177e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499950652.7883518
the lambda is 200.0
the regulation term lambda/alpha is 4.0003948166593884e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 9687.661818684359
the lambda is 200.0
the regulation term lambda/alpha is 0.020644816442112465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.555145357107821
the lambda is 200.0
the regulation term lambda/alpha is 78.27343342469595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99992937
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000565e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13208052075352342
the lambda is 200.0
the regulation term lambda/alpha is 1514.2278275327344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06010179576703082
the lambda is 200.0
the regulation term lambda/alpha is 3327.687591486428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09687092755331539
the lambda is 200.0
the regulation term lambda/alpha is 2064.6029211388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10818362268473757
the lambda is 200.0
the regulation term lambda/alpha is 1848.7086588219402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10317692687314746
the lambda is 200.0
the regulation term lambda/alpha is 1938.4178814115412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11054136080926658
the lambda is 200.0
the regulation term lambda/alpha is 1809.277527758046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07918644968288995
the lambda is 200.0
the regulation term lambda/alpha is 2525.6846442910373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12215499083346275
the lambda is 200.0
the regulation term lambda/alpha is 1637.264254496695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.174749369737657
the lambda is 200.0
the regulation term lambda/alpha is 62.99709889115651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14176700032659934
the lambda is 200.0
the regulation term lambda/alpha is 1410.765548676666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.27679831125523957
the lambda is 200.0
the regulation term lambda/alpha is 722.5477608336173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 282544635.73477256
the lambda is 200.0
the regulation term lambda/alpha is 7.078527591928589e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 25.10770799354442
the lambda is 200.0
the regulation term lambda/alpha is 7.965681298007094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06371805111517945
the lambda is 200.0
the regulation term lambda/alpha is 3138.8279537688863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1224332176642564
the lambda is 200.0
the regulation term lambda/alpha is 1633.543607000935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11486707772482861
the lambda is 200.0
the regulation term lambda/alpha is 1741.1429276464464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11191995248252916
the lambda is 200.0
the regulation term lambda/alpha is 1786.9914663448435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1710.9243162740097
the lambda is 200.0
the regulation term lambda/alpha is 0.1168958779167701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05271639502519391
the lambda is 200.0
the regulation term lambda/alpha is 3793.88613171324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061390095750711485
the lambda is 200.0
the regulation term lambda/alpha is 3257.854504937502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.263771845692304
the lambda is 200.0
the regulation term lambda/alpha is 11.58495384367029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10741868111924642
the lambda is 200.0
the regulation term lambda/alpha is 1861.8735392773835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.477101565876154
the lambda is 200.0
the regulation term lambda/alpha is 14.839986106982929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06038853399427895
the lambda is 200.0
the regulation term lambda/alpha is 3311.8869886615803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13431162913222916
the lambda is 200.0
the regulation term lambda/alpha is 1489.0743362445626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09759972307513863
the lambda is 200.0
the regulation term lambda/alpha is 2049.1861421166836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0575214189873329
the lambda is 200.0
the regulation term lambda/alpha is 3476.9656854960945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09935395771722864
the lambda is 200.0
the regulation term lambda/alpha is 2013.0048625664226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.49535560363779313
the lambda is 200.0
the regulation term lambda/alpha is 403.75035334462706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6656557936096797
the lambda is 200.0
the regulation term lambda/alpha is 300.4555836815474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 1291980.481042556
the lambda is 200.0
the regulation term lambda/alpha is 0.00015480110027561034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 51879.35474766762
the lambda is 200.0
the regulation term lambda/alpha is 0.0038550980630496674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06844203153871745
the lambda is 200.0
the regulation term lambda/alpha is 2922.1809391625175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0677377405767364
the lambda is 200.0
the regulation term lambda/alpha is 2952.5637893609824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.472301281366804
the lambda is 200.0
the regulation term lambda/alpha is 36.54769533267482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 428544.7605439305
the lambda is 200.0
the regulation term lambda/alpha is 0.0004666957069925437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0319136165960259
the lambda is 200.0
the regulation term lambda/alpha is 193.81467284029077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 12.079956602850618
the lambda is 200.0
the regulation term lambda/alpha is 16.556350869075487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7432702834390937
the lambda is 200.0
the regulation term lambda/alpha is 269.0811195553316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2565608551034604
the lambda is 200.0
the regulation term lambda/alpha is 779.542147687917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10603564974796531
the lambda is 200.0
the regulation term lambda/alpha is 1886.1581031980968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 112.8373214779544
the lambda is 200.0
the regulation term lambda/alpha is 1.7724632008308971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1102771017808105
the lambda is 200.0
the regulation term lambda/alpha is 1813.6131324662933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.062203839702898146
the lambda is 200.0
the regulation term lambda/alpha is 3215.2356020987204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09168733367817138
the lambda is 200.0
the regulation term lambda/alpha is 2181.3263836639994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.7999549944579263
the lambda is 200.0
the regulation term lambda/alpha is 71.42971954758872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10543564935110444
the lambda is 200.0
the regulation term lambda/alpha is 1896.8916228133894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0630427418115982
the lambda is 200.0
the regulation term lambda/alpha is 3172.450852434297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09959142142103594
the lambda is 200.0
the regulation term lambda/alpha is 2008.2050958432803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8803703015336874
the lambda is 200.0
the regulation term lambda/alpha is 106.36202871151171
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 18.383581891860448
the lambda is 200.0
the regulation term lambda/alpha is 10.879272667126552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11920153157244118
the lambda is 200.0
the regulation term lambda/alpha is 1677.8307909446278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14752608109280801
the lambda is 200.0
the regulation term lambda/alpha is 1355.6924885314406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3423786325175954
the lambda is 200.0
the regulation term lambda/alpha is 584.1486033440526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07274116584345891
the lambda is 200.0
the regulation term lambda/alpha is 2749.4747668796754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06608877249545601
the lambda is 200.0
the regulation term lambda/alpha is 3026.2326329899856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.47058762000245413
the lambda is 200.0
the regulation term lambda/alpha is 425.00055568601016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20948505667277623
the lambda is 200.0
the regulation term lambda/alpha is 954.7220368678027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 389.7210667840207
the lambda is 200.0
the regulation term lambda/alpha is 0.5131875514208163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 482622147.97173196
the lambda is 200.0
the regulation term lambda/alpha is 4.144028632762091e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 23.50868263453669
the lambda is 200.0
the regulation term lambda/alpha is 8.50749500128005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07377131865867011
the lambda is 200.0
the regulation term lambda/alpha is 2711.080724005665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17318762220536518
the lambda is 200.0
the regulation term lambda/alpha is 1154.8169404557145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  25  iterations
the alpha is 80301225.56189395
the lambda is 200.0
the regulation term lambda/alpha is 2.4906220123109523e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0775065067899661
the lambda is 200.0
the regulation term lambda/alpha is 2580.4285121761127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2376393865043394
the lambda is 200.0
the regulation term lambda/alpha is 841.6113294264371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.533900690173953
the lambda is 200.0
the regulation term lambda/alpha is 374.6015011421636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.93857830502117
the lambda is 200.0
the regulation term lambda/alpha is 40.49748483215407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15170552218229588
the lambda is 200.0
the regulation term lambda/alpha is 1318.3435719608901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19869471370363476
the lambda is 200.0
the regulation term lambda/alpha is 1006.5693056047387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1593827110240855
the lambda is 200.0
the regulation term lambda/alpha is 1254.841247930439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.1946133263415146
the lambda is 200.0
the regulation term lambda/alpha is 62.60538586966983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07532760713657413
the lambda is 200.0
the regulation term lambda/alpha is 2655.069072317487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06637962248475052
the lambda is 200.0
the regulation term lambda/alpha is 3012.9728448809165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08536925184650584
the lambda is 200.0
the regulation term lambda/alpha is 2342.763883647482
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15625143535124883
the lambda is 200.0
the regulation term lambda/alpha is 1279.9882417105841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 333521066.32900065
the lambda is 200.0
the regulation term lambda/alpha is 5.996622708165329e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12617552966631823
the lambda is 200.0
the regulation term lambda/alpha is 1585.0934054243066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4062852955975143
the lambda is 200.0
the regulation term lambda/alpha is 492.26492360710387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3096050478171513
the lambda is 200.0
the regulation term lambda/alpha is 645.9842997072753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8036029502691469
the lambda is 200.0
the regulation term lambda/alpha is 110.88915105741789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6779989757268736
the lambda is 200.0
the regulation term lambda/alpha is 294.98569638041516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06536828774103466
the lambda is 200.0
the regulation term lambda/alpha is 3059.587560138138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6373225950076278
the lambda is 200.0
the regulation term lambda/alpha is 313.8128187619118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 21.911583852372512
the lambda is 200.0
the regulation term lambda/alpha is 9.127592115087777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 9303.249003464134
the lambda is 200.0
the regulation term lambda/alpha is 0.021497865952585866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06615082288372263
the lambda is 200.0
the regulation term lambda/alpha is 3023.3939848571845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.130277758169931
the lambda is 200.0
the regulation term lambda/alpha is 1535.1814677308544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 994.3216251685819
the lambda is 200.0
the regulation term lambda/alpha is 0.20114216058218695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07607409183635776
the lambda is 200.0
the regulation term lambda/alpha is 2629.015939226959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061903612246614725
the lambda is 200.0
the regulation term lambda/alpha is 3230.8292317939367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.0061063725306916
the lambda is 200.0
the regulation term lambda/alpha is 66.53124514407317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09174521215269028
the lambda is 200.0
the regulation term lambda/alpha is 2179.950269962238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0968937698193869
the lambda is 200.0
the regulation term lambda/alpha is 2064.1162003791
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16972556476465178
the lambda is 200.0
the regulation term lambda/alpha is 1178.3728649088778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14605019109464218
the lambda is 200.0
the regulation term lambda/alpha is 1369.3922513966293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.4004971662975505
the lambda is 200.0
the regulation term lambda/alpha is 45.44941001933974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06361447733327066
the lambda is 200.0
the regulation term lambda/alpha is 3143.938430118942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.592235841067037
the lambda is 200.0
the regulation term lambda/alpha is 55.67563179275892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 23316.2317558454
the lambda is 200.0
the regulation term lambda/alpha is 0.008577715391332898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9997603
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992001917e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4869071059756903
the lambda is 200.0
the regulation term lambda/alpha is 410.7559687370538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08138349220022395
the lambda is 200.0
the regulation term lambda/alpha is 2457.5008345420897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0988740374462479
the lambda is 200.0
the regulation term lambda/alpha is 2022.775696893418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 20201.74197032625
the lambda is 200.0
the regulation term lambda/alpha is 0.009900136349319489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 909.7626293298104
the lambda is 200.0
the regulation term lambda/alpha is 0.2198375637250926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06694863505938109
the lambda is 200.0
the regulation term lambda/alpha is 2987.3648629670647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06801347063468006
the lambda is 200.0
the regulation term lambda/alpha is 2940.5939460766176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 4481140.054915173
the lambda is 200.0
the regulation term lambda/alpha is 4.463149947313708e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21819384186897164
the lambda is 200.0
the regulation term lambda/alpha is 916.6161532647778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 70.81277633409228
the lambda is 200.0
the regulation term lambda/alpha is 2.824349084357416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09505605594974381
the lambda is 200.0
the regulation term lambda/alpha is 2104.021653346738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0823572977306452
the lambda is 200.0
the regulation term lambda/alpha is 2428.442961473952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 3.657313246224835
the lambda is 200.0
the regulation term lambda/alpha is 54.68495218626535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2774112071317634
the lambda is 200.0
the regulation term lambda/alpha is 720.9514066423602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 32.44356429031313
the lambda is 200.0
the regulation term lambda/alpha is 6.164550793813836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22825826395743765
the lambda is 200.0
the regulation term lambda/alpha is 876.2004780571413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 47005422.704179175
the lambda is 200.0
the regulation term lambda/alpha is 4.2548282409599165e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05590782507770526
the lambda is 200.0
the regulation term lambda/alpha is 3577.3167659808564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05788475042458374
the lambda is 200.0
the regulation term lambda/alpha is 3455.141441105008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 29.784089256181165
the lambda is 200.0
the regulation term lambda/alpha is 6.714994649651525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08445819360659455
the lambda is 200.0
the regulation term lambda/alpha is 2368.03549140061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499989301.3994129
the lambda is 200.0
the regulation term lambda/alpha is 4.000085590636097e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10390627406276165
the lambda is 200.0
the regulation term lambda/alpha is 1924.8115843245005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07832725776811386
the lambda is 200.0
the regulation term lambda/alpha is 2553.3895312931245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10052915271182333
the lambda is 200.0
the regulation term lambda/alpha is 1989.4726515135326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16360682604995247
the lambda is 200.0
the regulation term lambda/alpha is 1222.4428822971968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08636843389487606
the lambda is 200.0
the regulation term lambda/alpha is 2315.6608378870387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12607700798527607
the lambda is 200.0
the regulation term lambda/alpha is 1586.3320616186977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07425034452053214
the lambda is 200.0
the regulation term lambda/alpha is 2693.5901953248826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.584906119717692
the lambda is 200.0
the regulation term lambda/alpha is 341.9352153411064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1499428577328853
the lambda is 200.0
the regulation term lambda/alpha is 1333.8414581659413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.9968424445667097
the lambda is 200.0
the regulation term lambda/alpha is 66.73690849600752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 354979297.81733876
the lambda is 200.0
the regulation term lambda/alpha is 5.634131376949022e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41359273872187197
the lambda is 200.0
the regulation term lambda/alpha is 483.5674838442792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3238037257777946
the lambda is 200.0
the regulation term lambda/alpha is 617.6581184159905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 22.20188098993198
the lambda is 200.0
the regulation term lambda/alpha is 9.008245746866908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0820196930570927
the lambda is 200.0
the regulation term lambda/alpha is 2438.4387766579785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06497526248125954
the lambda is 200.0
the regulation term lambda/alpha is 3078.0945295555352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 34.30434289932847
the lambda is 200.0
the regulation term lambda/alpha is 5.830165602848937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06449580101994004
the lambda is 200.0
the regulation term lambda/alpha is 3100.9770688508293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5157582439895017
the lambda is 200.0
the regulation term lambda/alpha is 387.77858101298915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10842578831220884
the lambda is 200.0
the regulation term lambda/alpha is 1844.5796255048285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061258126681223816
the lambda is 200.0
the regulation term lambda/alpha is 3264.8729374432837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06484129479884482
the lambda is 200.0
the regulation term lambda/alpha is 3084.454137142911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 52.734603968605846
the lambda is 200.0
the regulation term lambda/alpha is 3.7925761255183543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06199964203735483
the lambda is 200.0
the regulation term lambda/alpha is 3225.825076207696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29255907673595793
the lambda is 200.0
the regulation term lambda/alpha is 683.6226113076817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11405613385549425
the lambda is 200.0
the regulation term lambda/alpha is 1753.5225264902815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05363570689960406
the lambda is 200.0
the regulation term lambda/alpha is 3728.859216386619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17992124403722817
the lambda is 200.0
the regulation term lambda/alpha is 1111.597471828381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07992587056285758
the lambda is 200.0
the regulation term lambda/alpha is 2502.3186934537084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6956005615729234
the lambda is 200.0
the regulation term lambda/alpha is 287.5213319951194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0201248667605864
the lambda is 200.0
the regulation term lambda/alpha is 196.05443070425426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1487471752084158
the lambda is 200.0
the regulation term lambda/alpha is 1344.5633486469358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1420503654485975
the lambda is 200.0
the regulation term lambda/alpha is 1407.951323239448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0257166369854382
the lambda is 200.0
the regulation term lambda/alpha is 194.98562545285043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12886458629726572
the lambda is 200.0
the regulation term lambda/alpha is 1552.0167778185282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13206417371058718
the lambda is 200.0
the regulation term lambda/alpha is 1514.4152602528768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 107122.73171178815
the lambda is 200.0
the regulation term lambda/alpha is 0.0018670173622728043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 20.253479911255077
the lambda is 200.0
the regulation term lambda/alpha is 9.874846242539181
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13828613716426563
the lambda is 200.0
the regulation term lambda/alpha is 1446.2765690130348
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24104628045370743
the lambda is 200.0
the regulation term lambda/alpha is 829.716184060387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999998.63834435
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000108932453e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06667622049942552
the lambda is 200.0
the regulation term lambda/alpha is 2999.5701391281345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 427045590.3007779
the lambda is 200.0
the regulation term lambda/alpha is 4.6833407144922266e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6857740971490737
the lambda is 200.0
the regulation term lambda/alpha is 291.6412282578879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.5311328315574215
the lambda is 200.0
the regulation term lambda/alpha is 30.62255892785261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13216382923163603
the lambda is 200.0
the regulation term lambda/alpha is 1513.2733453831106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07478161963197323
the lambda is 200.0
the regulation term lambda/alpha is 2674.453976582356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11836655378571499
the lambda is 200.0
the regulation term lambda/alpha is 1689.6664944902443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.128789807203526
the lambda is 200.0
the regulation term lambda/alpha is 177.18090535870604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.4663505006462882
the lambda is 200.0
the regulation term lambda/alpha is 57.69756981087479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 10.80541709609576
the lambda is 200.0
the regulation term lambda/alpha is 18.509234601620747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10402763219131975
the lambda is 200.0
the regulation term lambda/alpha is 1922.5661085140835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  137  iterations
the alpha is 404732.2244227163
the lambda is 200.0
the regulation term lambda/alpha is 0.0004941538823237191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 16755.814257333463
the lambda is 200.0
the regulation term lambda/alpha is 0.011936155231159038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 59206835.93852178
the lambda is 200.0
the regulation term lambda/alpha is 3.3779883155329008e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 832.8536722784557
the lambda is 200.0
the regulation term lambda/alpha is 0.24013822194342457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 2932.64010704497
the lambda is 200.0
the regulation term lambda/alpha is 0.06819793520505553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06782526094872242
the lambda is 200.0
the regulation term lambda/alpha is 2948.7538595864007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09787660941173149
the lambda is 200.0
the regulation term lambda/alpha is 2043.3891325216666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09469539376950993
the lambda is 200.0
the regulation term lambda/alpha is 2112.035148053802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30768517153366726
the lambda is 200.0
the regulation term lambda/alpha is 650.0150754847664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.21046107410534276
the lambda is 200.0
the regulation term lambda/alpha is 950.2944943628547
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20050675623574316
the lambda is 200.0
the regulation term lambda/alpha is 997.4726226424642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11696422123629897
the lambda is 200.0
the regulation term lambda/alpha is 1709.924606738898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2933283631532331
the lambda is 200.0
the regulation term lambda/alpha is 681.8297346019727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2618081867437381
the lambda is 200.0
the regulation term lambda/alpha is 763.9180519429787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11214822917650907
the lambda is 200.0
the regulation term lambda/alpha is 1783.3540615716886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0650166673106223
the lambda is 200.0
the regulation term lambda/alpha is 187.79048829821562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 2420.6054865526853
the lambda is 200.0
the regulation term lambda/alpha is 0.08262395549835375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.178241479777178
the lambda is 200.0
the regulation term lambda/alpha is 27.86197713791711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14236179712623717
the lambda is 200.0
the regulation term lambda/alpha is 1404.8712789334418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0684472218716755
the lambda is 200.0
the regulation term lambda/alpha is 2921.9593510304767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 491098391.29951125
the lambda is 200.0
the regulation term lambda/alpha is 4.072503668170722e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.008743062685801
the lambda is 200.0
the regulation term lambda/alpha is 33.284831438707506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 469613592.0730984
the lambda is 200.0
the regulation term lambda/alpha is 4.258820514906832e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 44.58986448057332
the lambda is 200.0
the regulation term lambda/alpha is 4.4853242397077695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08297348824154614
the lambda is 200.0
the regulation term lambda/alpha is 2410.4084839458014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08890635461034357
the lambda is 200.0
the regulation term lambda/alpha is 2249.557985776773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.7192814024896244
the lambda is 200.0
the regulation term lambda/alpha is 53.773828424523984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9470523551080614
the lambda is 200.0
the regulation term lambda/alpha is 211.1815665958398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05526877162256103
the lambda is 200.0
the regulation term lambda/alpha is 3618.6800272282303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3431267215797297
the lambda is 200.0
the regulation term lambda/alpha is 582.8750354365145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 4047.877031300532
the lambda is 200.0
the regulation term lambda/alpha is 0.04940861554179735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15933487626522372
the lambda is 200.0
the regulation term lambda/alpha is 1255.2179704027035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.24007631890562
the lambda is 200.0
the regulation term lambda/alpha is 161.2803961747306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07182750643395011
the lambda is 200.0
the regulation term lambda/alpha is 2784.4486037380752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0758630106794824
the lambda is 200.0
the regulation term lambda/alpha is 2636.3309102639028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0771623853178272
the lambda is 200.0
the regulation term lambda/alpha is 185.6730263942405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 2387.5680165024182
the lambda is 200.0
the regulation term lambda/alpha is 0.08376724709731319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 448228.2113175727
the lambda is 200.0
the regulation term lambda/alpha is 0.0004462012763812822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.059837443735673616
the lambda is 200.0
the regulation term lambda/alpha is 3342.3887705410934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.0817906479292585
the lambda is 200.0
the regulation term lambda/alpha is 64.89733497451736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06637103885727559
the lambda is 200.0
the regulation term lambda/alpha is 3013.3625063498007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 148320.45589709256
the lambda is 200.0
the regulation term lambda/alpha is 0.001348431669727092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 3647.011849648422
the lambda is 200.0
the regulation term lambda/alpha is 0.05483941600553898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.067685880586256
the lambda is 200.0
the regulation term lambda/alpha is 65.19572335149863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13575234918168047
the lambda is 200.0
the regulation term lambda/alpha is 1473.2710056629328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07535793645425855
the lambda is 200.0
the regulation term lambda/alpha is 2654.000486350868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08551911641033554
the lambda is 200.0
the regulation term lambda/alpha is 2338.658400542463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.9383419089249522
the lambda is 200.0
the regulation term lambda/alpha is 213.1419241725415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 440.34761353563744
the lambda is 200.0
the regulation term lambda/alpha is 0.4541866331332211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2696723549152517
the lambda is 200.0
the regulation term lambda/alpha is 741.6407219896632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08328675788743915
the lambda is 200.0
the regulation term lambda/alpha is 2401.342122961457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.623598076737325
the lambda is 200.0
the regulation term lambda/alpha is 14.680409600566945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 64.33183446796173
the lambda is 200.0
the regulation term lambda/alpha is 3.108880722181227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 1177.4110847816867
the lambda is 200.0
the regulation term lambda/alpha is 0.16986420680512246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.45202266778145495
the lambda is 200.0
the regulation term lambda/alpha is 442.4556869716465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.0442853847079
the lambda is 200.0
the regulation term lambda/alpha is 49.45249431611145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14099101465528818
the lambda is 200.0
the regulation term lambda/alpha is 1418.5301133478902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 303.7308955357575
the lambda is 200.0
the regulation term lambda/alpha is 0.6584776291763658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 260.2078953773955
the lambda is 200.0
the regulation term lambda/alpha is 0.7686161855693414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15851636342495815
the lambda is 200.0
the regulation term lambda/alpha is 1261.6993960669572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07970549687495293
the lambda is 200.0
the regulation term lambda/alpha is 2509.2372275625203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5971982163333809
the lambda is 200.0
the regulation term lambda/alpha is 334.89718242619745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1589079.344620923
the lambda is 200.0
the regulation term lambda/alpha is 0.00012585903949793663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06973283440933514
the lambda is 200.0
the regulation term lambda/alpha is 2868.089354090933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2537570293239569
the lambda is 200.0
the regulation term lambda/alpha is 788.1555065994708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499819763.13688576
the lambda is 200.0
the regulation term lambda/alpha is 4.0014424148575726e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10521714256034273
the lambda is 200.0
the regulation term lambda/alpha is 1900.8309400276544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06140012260243926
the lambda is 200.0
the regulation term lambda/alpha is 3257.322486063807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.091025714495562
the lambda is 200.0
the regulation term lambda/alpha is 2197.1813251710437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.457760308588387
the lambda is 200.0
the regulation term lambda/alpha is 44.86557960836903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 12.869558700308392
the lambda is 200.0
the regulation term lambda/alpha is 15.54054841019587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10683350865082583
the lambda is 200.0
the regulation term lambda/alpha is 1872.0718108555166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.19095241453637712
the lambda is 200.0
the regulation term lambda/alpha is 1047.3813619251162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06260958504278442
the lambda is 200.0
the regulation term lambda/alpha is 3194.399066266443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06493730554549167
the lambda is 200.0
the regulation term lambda/alpha is 3079.893727033231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 38664.43865114903
the lambda is 200.0
the regulation term lambda/alpha is 0.005172711850403559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1321781.5619298546
the lambda is 200.0
the regulation term lambda/alpha is 0.0001513109319727474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06697638869611765
the lambda is 200.0
the regulation term lambda/alpha is 2986.1269604641016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2373.7172232336666
the lambda is 200.0
the regulation term lambda/alpha is 0.0842560343929864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07170642321524917
the lambda is 200.0
the regulation term lambda/alpha is 2789.150414038052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0965465717954644
the lambda is 200.0
the regulation term lambda/alpha is 2071.539116103506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07989371341077933
the lambda is 200.0
the regulation term lambda/alpha is 2503.325874611504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 24.77040575524063
the lambda is 200.0
the regulation term lambda/alpha is 8.074151145371784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 191883.1748755218
the lambda is 200.0
the regulation term lambda/alpha is 0.0010423008694209054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06283564809593664
the lambda is 200.0
the regulation term lambda/alpha is 3182.906615280591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21640353648718122
the lambda is 200.0
the regulation term lambda/alpha is 924.1993141449752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 39.808744071983675
the lambda is 200.0
the regulation term lambda/alpha is 5.024021849027752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10353255878491137
the lambda is 200.0
the regulation term lambda/alpha is 1931.759461441492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21110999427805135
the lambda is 200.0
the regulation term lambda/alpha is 947.3734329061728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7878464142324775
the lambda is 200.0
the regulation term lambda/alpha is 111.86643237800715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2153607286425544
the lambda is 200.0
the regulation term lambda/alpha is 928.6744211009361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.1658789985201032
the lambda is 200.0
the regulation term lambda/alpha is 63.173608370215796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  22  iterations
the alpha is 329452.4206562645
the lambda is 200.0
the regulation term lambda/alpha is 0.0006070679329100173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4946689655262827
the lambda is 200.0
the regulation term lambda/alpha is 404.3107895139899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0431700701282198
the lambda is 200.0
the regulation term lambda/alpha is 191.7232920375268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18336477167796997
the lambda is 200.0
the regulation term lambda/alpha is 1090.7220518412623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5334552356754055
the lambda is 200.0
the regulation term lambda/alpha is 374.91430700231257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4410062913157523
the lambda is 200.0
the regulation term lambda/alpha is 453.5082694700238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 130.41176286196122
the lambda is 200.0
the regulation term lambda/alpha is 1.5336039910118906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.2339332349870795
the lambda is 200.0
the regulation term lambda/alpha is 89.5281903987416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3076816047094138
the lambda is 200.0
the regulation term lambda/alpha is 650.0226108378745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.060666172442175904
the lambda is 200.0
the regulation term lambda/alpha is 3296.730153705188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0767255266114729
the lambda is 200.0
the regulation term lambda/alpha is 2606.694392764111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 1998.4868999603693
the lambda is 200.0
the regulation term lambda/alpha is 0.10007571228211007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 1257.5047445203188
the lambda is 200.0
the regulation term lambda/alpha is 0.15904512557230227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8219200309307558
the lambda is 200.0
the regulation term lambda/alpha is 243.33267528900188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 6038927.7064046245
the lambda is 200.0
the regulation term lambda/alpha is 3.3118462370047696e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1327674637222916
the lambda is 200.0
the regulation term lambda/alpha is 1506.3931658613142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3549400344272225
the lambda is 200.0
the regulation term lambda/alpha is 563.4754623347745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16854562899390194
the lambda is 200.0
the regulation term lambda/alpha is 1186.6222885390644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499996968.0372447
the lambda is 200.0
the regulation term lambda/alpha is 4.000024255849128e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2003254007954439
the lambda is 200.0
the regulation term lambda/alpha is 998.3756388648079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11572988248064914
the lambda is 200.0
the regulation term lambda/alpha is 1728.16212816462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 203.27567107120998
the lambda is 200.0
the regulation term lambda/alpha is 0.983885572464486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07308713066432981
the lambda is 200.0
the regulation term lambda/alpha is 2736.459868954878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27345886798149205
the lambda is 200.0
the regulation term lambda/alpha is 731.3714178526336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999992.4871903
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000601024783e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999177.10150963
the lambda is 200.0
the regulation term lambda/alpha is 4.0000065831987573e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.34849429029639
the lambda is 200.0
the regulation term lambda/alpha is 31.50353309850148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05579948199377725
the lambda is 200.0
the regulation term lambda/alpha is 3584.2626643434423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10941341523300419
the lambda is 200.0
the regulation term lambda/alpha is 1827.929414085876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 18.846876813336966
the lambda is 200.0
the regulation term lambda/alpha is 10.611837811688263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07387936576349484
the lambda is 200.0
the regulation term lambda/alpha is 2707.115822302087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05316367295411216
the lambda is 200.0
the regulation term lambda/alpha is 3761.967315024087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 33833.88799621649
the lambda is 200.0
the regulation term lambda/alpha is 0.005911233140641869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7726732810118493
the lambda is 200.0
the regulation term lambda/alpha is 258.84161509776976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 417723397.8298349
the lambda is 200.0
the regulation term lambda/alpha is 4.787857252886577e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9975552570945547
the lambda is 200.0
the regulation term lambda/alpha is 200.49014686415782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2181.9865649952762
the lambda is 200.0
the regulation term lambda/alpha is 0.09165959278050503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.1939877834118104
the lambda is 200.0
the regulation term lambda/alpha is 91.15821041126559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06779141019001549
the lambda is 200.0
the regulation term lambda/alpha is 2950.226281462671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5225777542476713
the lambda is 200.0
the regulation term lambda/alpha is 382.7181665777753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06787807201474004
the lambda is 200.0
the regulation term lambda/alpha is 2946.4596454149296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.836826704846654
the lambda is 200.0
the regulation term lambda/alpha is 29.253337642479543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09081053892304129
the lambda is 200.0
the regulation term lambda/alpha is 2202.3875463341637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 418.1705673236311
the lambda is 200.0
the regulation term lambda/alpha is 0.4782737371499792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8552079560372878
the lambda is 200.0
the regulation term lambda/alpha is 233.86124811879068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.4739229507434946
the lambda is 200.0
the regulation term lambda/alpha is 422.00952641402614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2470360715132766
the lambda is 200.0
the regulation term lambda/alpha is 809.5983666468371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.547137273785257
the lambda is 200.0
the regulation term lambda/alpha is 129.27101129861347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.625776337608904
the lambda is 200.0
the regulation term lambda/alpha is 319.6030082636257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.057540437437912643
the lambda is 200.0
the regulation term lambda/alpha is 3475.8164676068764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06405484270217061
the lambda is 200.0
the regulation term lambda/alpha is 3122.3244264281466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13305144303171468
the lambda is 200.0
the regulation term lambda/alpha is 1503.1779847162363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1287820824589326
the lambda is 200.0
the regulation term lambda/alpha is 1553.0110725129648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 372521340.45873606
the lambda is 200.0
the regulation term lambda/alpha is 5.368819938039332e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08298399995589492
the lambda is 200.0
the regulation term lambda/alpha is 2410.1031536958667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 36.05156304365362
the lambda is 200.0
the regulation term lambda/alpha is 5.547609676668574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.7922277090127596
the lambda is 200.0
the regulation term lambda/alpha is 52.739449038007926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20570967832351028
the lambda is 200.0
the regulation term lambda/alpha is 972.24399760846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 281.3786239620908
the lambda is 200.0
the regulation term lambda/alpha is 0.7107860475817287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22590339848475918
the lambda is 200.0
the regulation term lambda/alpha is 885.3341797489302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08006039363272388
the lambda is 200.0
the regulation term lambda/alpha is 2498.1141226646682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999808
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000154e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.22522141413703375
the lambda is 200.0
the regulation term lambda/alpha is 888.0150263078979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06074519676775562
the lambda is 200.0
the regulation term lambda/alpha is 3292.441388652522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3058430288794867
the lambda is 200.0
the regulation term lambda/alpha is 653.93022274445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29155493245403
the lambda is 200.0
the regulation term lambda/alpha is 685.9770758004046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06197253341820462
the lambda is 200.0
the regulation term lambda/alpha is 3227.2361475099774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7175603840214289
the lambda is 200.0
the regulation term lambda/alpha is 278.72218764243723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.325628871202501
the lambda is 200.0
the regulation term lambda/alpha is 37.55425036871579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 26.875601684216132
the lambda is 200.0
the regulation term lambda/alpha is 7.441693858614474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1287465854256733
the lambda is 200.0
the regulation term lambda/alpha is 1553.4392569615916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 5411420.405567447
the lambda is 200.0
the regulation term lambda/alpha is 3.695887308889057e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.626604233604038
the lambda is 200.0
the regulation term lambda/alpha is 30.181370872547973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05885429836241714
the lambda is 200.0
the regulation term lambda/alpha is 3398.2224844212046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2223331116956988
the lambda is 200.0
the regulation term lambda/alpha is 899.5511216239104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10030482235813501
the lambda is 200.0
the regulation term lambda/alpha is 1993.922079697292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0574806538661446
the lambda is 200.0
the regulation term lambda/alpha is 3479.43153997066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.106953819824777
the lambda is 200.0
the regulation term lambda/alpha is 64.37173244218977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 854.5688651436517
the lambda is 200.0
the regulation term lambda/alpha is 0.23403614168225087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 496861799.06180394
the lambda is 200.0
the regulation term lambda/alpha is 4.025264175624866e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499310871.479292
the lambda is 200.0
the regulation term lambda/alpha is 4.0055206370225134e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 425493807.4786737
the lambda is 200.0
the regulation term lambda/alpha is 4.700420934093718e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07041621986677889
the lambda is 200.0
the regulation term lambda/alpha is 2840.254708054222
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.3612982941409375
the lambda is 200.0
the regulation term lambda/alpha is 59.50081858209937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2618553875455027
the lambda is 200.0
the regulation term lambda/alpha is 158.49676751710027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3047966404792295
the lambda is 200.0
the regulation term lambda/alpha is 153.28059085632182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05845993944298429
the lambda is 200.0
the regulation term lambda/alpha is 3421.146205514959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11763882580501825
the lambda is 200.0
the regulation term lambda/alpha is 1700.118975443466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5812481988758185
the lambda is 200.0
the regulation term lambda/alpha is 344.08708773088046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.444279812247517
the lambda is 200.0
the regulation term lambda/alpha is 45.00166696274193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.507019199347978
the lambda is 200.0
the regulation term lambda/alpha is 394.46237984123314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10725071874987618
the lambda is 200.0
the regulation term lambda/alpha is 1864.7893676724743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 37.54339345990027
the lambda is 200.0
the regulation term lambda/alpha is 5.3271689522050805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11766047274928054
the lambda is 200.0
the regulation term lambda/alpha is 1699.806190870697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09103531684616109
the lambda is 200.0
the regulation term lambda/alpha is 2196.9495678031894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08293012745929035
the lambda is 200.0
the regulation term lambda/alpha is 2411.668788260071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.223057483054365
the lambda is 200.0
the regulation term lambda/alpha is 163.52461169734732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29201379414002276
the lambda is 200.0
the regulation term lambda/alpha is 684.899152072585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 8521.70438497837
the lambda is 200.0
the regulation term lambda/alpha is 0.023469483446591964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07286078658843587
the lambda is 200.0
the regulation term lambda/alpha is 2744.9607582433523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2648827865896868
the lambda is 200.0
the regulation term lambda/alpha is 158.11741777214783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 11169974.07845267
the lambda is 200.0
the regulation term lambda/alpha is 1.7905144505734177e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08148244573618199
the lambda is 200.0
the regulation term lambda/alpha is 2454.5164077124737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05482142453124878
the lambda is 200.0
the regulation term lambda/alpha is 3648.2087379177447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12057402231626034
the lambda is 200.0
the regulation term lambda/alpha is 1658.732089698466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06539098426557559
the lambda is 200.0
the regulation term lambda/alpha is 3058.5256093979297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.1979595615716154
the lambda is 200.0
the regulation term lambda/alpha is 90.99348481961754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09527356687166369
the lambda is 200.0
the regulation term lambda/alpha is 2099.2181416846283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 351263643.6498723
the lambda is 200.0
the regulation term lambda/alpha is 5.693729015672149e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999998.7289672
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000101682624e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0698841611994628
the lambda is 200.0
the regulation term lambda/alpha is 2861.878808692597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 101.48280643410372
the lambda is 200.0
the regulation term lambda/alpha is 1.97077718903908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 37.923059146680025
the lambda is 200.0
the regulation term lambda/alpha is 5.273836143503972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1483478258438451
the lambda is 200.0
the regulation term lambda/alpha is 1348.1828861484319
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 39.42303443223589
the lambda is 200.0
the regulation term lambda/alpha is 5.073176199660107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8563945533603352
the lambda is 200.0
the regulation term lambda/alpha is 233.53721624598927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 5758.193761478573
the lambda is 200.0
the regulation term lambda/alpha is 0.03473311393895237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06572871287461614
the lambda is 200.0
the regulation term lambda/alpha is 3042.810230918705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06258903501585711
the lambda is 200.0
the regulation term lambda/alpha is 3195.4478919403286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 383.18062194272505
the lambda is 200.0
the regulation term lambda/alpha is 0.5219470624218948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09552353402661637
the lambda is 200.0
the regulation term lambda/alpha is 2093.7248819152005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06046270789199708
the lambda is 200.0
the regulation term lambda/alpha is 3307.8240616886474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18232731510944622
the lambda is 200.0
the regulation term lambda/alpha is 1096.9283449380328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11802621205700035
the lambda is 200.0
the regulation term lambda/alpha is 1694.5388360291583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7590808254828145
the lambda is 200.0
the regulation term lambda/alpha is 113.69574217552285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  28  iterations
the alpha is 8897901.861611914
the lambda is 200.0
the regulation term lambda/alpha is 2.2477209021922016e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06364402060004001
the lambda is 200.0
the regulation term lambda/alpha is 3142.47902810644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8826064290893125
the lambda is 200.0
the regulation term lambda/alpha is 226.60156714059198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 101687.59156269855
the lambda is 200.0
the regulation term lambda/alpha is 0.001966808308924142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059186752514650914
the lambda is 200.0
the regulation term lambda/alpha is 3379.1345445164034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 5071479.648983064
the lambda is 200.0
the regulation term lambda/alpha is 3.943622253124965e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 101.22215044657952
the lambda is 200.0
the regulation term lambda/alpha is 1.9758521145581764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12097853185665147
the lambda is 200.0
the regulation term lambda/alpha is 1653.1858746391613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29645113998824213
the lambda is 200.0
the regulation term lambda/alpha is 674.6474309659677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0810721726847067
the lambda is 200.0
the regulation term lambda/alpha is 2466.9377096603653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5037469809367183
the lambda is 200.0
the regulation term lambda/alpha is 397.02471194586553
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.496365778403834
the lambda is 200.0
the regulation term lambda/alpha is 402.92866410561385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499582387.4082107
the lambda is 200.0
the regulation term lambda/alpha is 4.003343693471308e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16501870139818325
the lambda is 200.0
the regulation term lambda/alpha is 1211.983843682107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6760412661623166
the lambda is 200.0
the regulation term lambda/alpha is 295.83992873000193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11757620608893563
the lambda is 200.0
the regulation term lambda/alpha is 1701.024438981458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 181.30157445848968
the lambda is 200.0
the regulation term lambda/alpha is 1.1031343803679512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1914189898253107
the lambda is 200.0
the regulation term lambda/alpha is 1044.8284163578564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15746176074200627
the lambda is 200.0
the regulation term lambda/alpha is 1270.1496481275262
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12979290811307945
the lambda is 200.0
the regulation term lambda/alpha is 1540.9162403985436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14353259745434913
the lambda is 200.0
the regulation term lambda/alpha is 1393.4116956506027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.058856971041610175
the lambda is 200.0
the regulation term lambda/alpha is 3398.0681720540083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 185.03581751923858
the lambda is 200.0
the regulation term lambda/alpha is 1.0808718154213877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2788140549291867
the lambda is 200.0
the regulation term lambda/alpha is 717.3239528789037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09940725303344146
the lambda is 200.0
the regulation term lambda/alpha is 2011.9256281301555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7439755062835601
the lambda is 200.0
the regulation term lambda/alpha is 268.82605450154654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 30044.855522065172
the lambda is 200.0
the regulation term lambda/alpha is 0.006656713654459695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07762499000058538
the lambda is 200.0
the regulation term lambda/alpha is 2576.489864906801
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.052356985646762055
the lambda is 200.0
the regulation term lambda/alpha is 3819.929614537859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06593447444076692
the lambda is 200.0
the regulation term lambda/alpha is 3033.314539872045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.5007914906729907
the lambda is 200.0
the regulation term lambda/alpha is 57.129937767745226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29078513850477555
the lambda is 200.0
the regulation term lambda/alpha is 687.7930592615737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4569649761031657
the lambda is 200.0
the regulation term lambda/alpha is 437.67030398156254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07263321916723482
the lambda is 200.0
the regulation term lambda/alpha is 2753.561005460996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  24  iterations
the alpha is 8017191.56512176
the lambda is 200.0
the regulation term lambda/alpha is 2.4946391560616594e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06689067994586975
the lambda is 200.0
the regulation term lambda/alpha is 2989.9531618133783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13057952480294632
the lambda is 200.0
the regulation term lambda/alpha is 1531.6336945000685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09706313897805206
the lambda is 200.0
the regulation term lambda/alpha is 2060.5144456045673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09212172594551567
the lambda is 200.0
the regulation term lambda/alpha is 2171.0405221704996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08301647005227658
the lambda is 200.0
the regulation term lambda/alpha is 2409.160493984595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1231777236541197
the lambda is 200.0
the regulation term lambda/alpha is 1623.6702064863248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 458660220.59425026
the lambda is 200.0
the regulation term lambda/alpha is 4.360526398842167e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 33.11262922311366
the lambda is 200.0
the regulation term lambda/alpha is 6.039991528682165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33352490074753677
the lambda is 200.0
the regulation term lambda/alpha is 599.6553767102113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 16338194.579960136
the lambda is 200.0
the regulation term lambda/alpha is 1.2241254627075692e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0813497158600557
the lambda is 200.0
the regulation term lambda/alpha is 2458.521187019953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5960152128007525
the lambda is 200.0
the regulation term lambda/alpha is 125.3120887544874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06829049098357762
the lambda is 200.0
the regulation term lambda/alpha is 2928.6654279304516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1495463140776445
the lambda is 200.0
the regulation term lambda/alpha is 1337.3783314790355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499719634.88962525
the lambda is 200.0
the regulation term lambda/alpha is 4.002244179262131e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.6532667203116
the lambda is 200.0
the regulation term lambda/alpha is 35.37777534561049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23033349915700665
the lambda is 200.0
the regulation term lambda/alpha is 868.3061766177144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.056982173003546466
the lambda is 200.0
the regulation term lambda/alpha is 3509.869656735491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18809702201772197
the lambda is 200.0
the regulation term lambda/alpha is 1063.281054928964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05753891572262329
the lambda is 200.0
the regulation term lambda/alpha is 3475.908391533411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  40  iterations
the alpha is 1818095.4704100578
the lambda is 200.0
the regulation term lambda/alpha is 0.00011000522428829962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06846752957436247
the lambda is 200.0
the regulation term lambda/alpha is 2921.0926879256003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06344595936831877
the lambda is 200.0
the regulation term lambda/alpha is 3152.2890029757887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08675806422918751
the lambda is 200.0
the regulation term lambda/alpha is 2305.2612085910873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.19051820509633377
the lambda is 200.0
the regulation term lambda/alpha is 1049.7684454820044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14564179988585085
the lambda is 200.0
the regulation term lambda/alpha is 1373.2321363561373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 27.640797017347033
the lambda is 200.0
the regulation term lambda/alpha is 7.23568136890128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0683367741699456
the lambda is 200.0
the regulation term lambda/alpha is 2926.6818990112597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.220315510335285
the lambda is 200.0
the regulation term lambda/alpha is 14.064385551406406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08357386206254842
the lambda is 200.0
the regulation term lambda/alpha is 2393.0927094205103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05955553934674974
the lambda is 200.0
the regulation term lambda/alpha is 3358.209869203629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24776393752747713
the lambda is 200.0
the regulation term lambda/alpha is 807.2199771922817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05799730439983488
the lambda is 200.0
the regulation term lambda/alpha is 3448.4361311207663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 11.332470553010353
the lambda is 200.0
the regulation term lambda/alpha is 17.648402355378025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09618218838655927
the lambda is 200.0
the regulation term lambda/alpha is 2079.387081485333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05419072703573785
the lambda is 200.0
the regulation term lambda/alpha is 3690.668329068614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2923695362623691
the lambda is 200.0
the regulation term lambda/alpha is 684.0657975409663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5039169223727076
the lambda is 200.0
the regulation term lambda/alpha is 396.8908189435158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15031841500588392
the lambda is 200.0
the regulation term lambda/alpha is 1330.5089731831686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6939889996746283
the lambda is 200.0
the regulation term lambda/alpha is 288.1890060127301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 4011.065133229716
the lambda is 200.0
the regulation term lambda/alpha is 0.049862067395290505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 435967189.9677911
the lambda is 200.0
the regulation term lambda/alpha is 4.5875011836275076e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10972983906041738
the lambda is 200.0
the regulation term lambda/alpha is 1822.6582824921466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 243.51705467872
the lambda is 200.0
the regulation term lambda/alpha is 0.8212977126545266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.074841365675772
the lambda is 200.0
the regulation term lambda/alpha is 96.3929114334292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07440042060376967
the lambda is 200.0
the regulation term lambda/alpha is 2688.156846116896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09526852201499023
the lambda is 200.0
the regulation term lambda/alpha is 2099.32930384425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06247147917544359
the lambda is 200.0
the regulation term lambda/alpha is 3201.4609328894585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18306081043037672
the lambda is 200.0
the regulation term lambda/alpha is 1092.533128908362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11151938385105778
the lambda is 200.0
the regulation term lambda/alpha is 1793.4101955505287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2593704795761001
the lambda is 200.0
the regulation term lambda/alpha is 771.0977761496539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 554.4804563417999
the lambda is 200.0
the regulation term lambda/alpha is 0.36069801507433735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2004774434999215
the lambda is 200.0
the regulation term lambda/alpha is 997.6184677358892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.451556374462818
the lambda is 200.0
the regulation term lambda/alpha is 442.91258259375627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.452943308214993
the lambda is 200.0
the regulation term lambda/alpha is 21.157431445314167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10109208927479203
the lambda is 200.0
the regulation term lambda/alpha is 1978.3941694621924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9667276867468364
the lambda is 200.0
the regulation term lambda/alpha is 206.88349236487252
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4189938466745082
the lambda is 200.0
the regulation term lambda/alpha is 477.3339789769474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.614364324694862
the lambda is 200.0
the regulation term lambda/alpha is 30.23722162586297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999984.0993777
the lambda is 200.0
the regulation term lambda/alpha is 4.0000001272049827e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 178935715.7280012
the lambda is 200.0
the regulation term lambda/alpha is 1.1177198424937057e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0623424475054352
the lambda is 200.0
the regulation term lambda/alpha is 3208.0870739404863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 452655951.481974
the lambda is 200.0
the regulation term lambda/alpha is 4.4183667384734375e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 140.46795881506463
the lambda is 200.0
the regulation term lambda/alpha is 1.4238122464875655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499979948.19707114
the lambda is 200.0
the regulation term lambda/alpha is 4.000160420856886e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07255851540688854
the lambda is 200.0
the regulation term lambda/alpha is 2756.3959774873297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3881759122101954
the lambda is 200.0
the regulation term lambda/alpha is 515.2303213799133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09444274203104483
the lambda is 200.0
the regulation term lambda/alpha is 2117.6852312722644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06544575987182434
the lambda is 200.0
the regulation term lambda/alpha is 3055.9657400525325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30483997971174964
the lambda is 200.0
the regulation term lambda/alpha is 656.081922683225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9978826
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920169393e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13077676327875504
the lambda is 200.0
the regulation term lambda/alpha is 1529.32367330191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07594352080369439
the lambda is 200.0
the regulation term lambda/alpha is 2633.536052627556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0786538204418671
the lambda is 200.0
the regulation term lambda/alpha is 2542.7881173021933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15262577856246376
the lambda is 200.0
the regulation term lambda/alpha is 1310.3946258865296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32086294141493704
the lambda is 200.0
the regulation term lambda/alpha is 623.319100417277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10492042980576854
the lambda is 200.0
the regulation term lambda/alpha is 1906.2064496899723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15932783272732376
the lambda is 200.0
the regulation term lambda/alpha is 1255.2734608665846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12187409737636486
the lambda is 200.0
the regulation term lambda/alpha is 1641.0377947856389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8036858862790026
the lambda is 200.0
the regulation term lambda/alpha is 110.88405221853749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 24.663725805460484
the lambda is 200.0
the regulation term lambda/alpha is 8.109074905289473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12341086042891465
the lambda is 200.0
the regulation term lambda/alpha is 1620.602913754103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06239097669424563
the lambda is 200.0
the regulation term lambda/alpha is 3205.5917473471154
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30110361356394577
the lambda is 200.0
the regulation term lambda/alpha is 664.2231809600178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08444504165243019
the lambda is 200.0
the regulation term lambda/alpha is 2368.4043028030683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 801.774677592985
the lambda is 200.0
the regulation term lambda/alpha is 0.24944664079491985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06210448915519478
the lambda is 200.0
the regulation term lambda/alpha is 3220.3791178478896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2732374993145225
the lambda is 200.0
the regulation term lambda/alpha is 731.9639526117198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5387225809031941
the lambda is 200.0
the regulation term lambda/alpha is 129.977945655808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 347.16668627369484
the lambda is 200.0
the regulation term lambda/alpha is 0.5760921422118439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06100961395496248
the lambda is 200.0
the regulation term lambda/alpha is 3278.171865628272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05585451258029309
the lambda is 200.0
the regulation term lambda/alpha is 3580.7312741739893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09352879527230966
the lambda is 200.0
the regulation term lambda/alpha is 2138.378874844894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06488106770861915
the lambda is 200.0
the regulation term lambda/alpha is 3082.5633279988538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07533417524106602
the lambda is 200.0
the regulation term lambda/alpha is 2654.837586792566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 69.10793014092957
the lambda is 200.0
the regulation term lambda/alpha is 2.8940238781880234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.57409349334234
the lambda is 200.0
the regulation term lambda/alpha is 43.7245107235134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2899306367313051
the lambda is 200.0
the regulation term lambda/alpha is 689.8201661432254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09264349603628354
the lambda is 200.0
the regulation term lambda/alpha is 2158.813176930096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11542594908611484
the lambda is 200.0
the regulation term lambda/alpha is 1732.7126316352637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3579305357984754
the lambda is 200.0
the regulation term lambda/alpha is 558.7676378430183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13179678362205277
the lambda is 200.0
the regulation term lambda/alpha is 1517.4877148256537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30235947453587597
the lambda is 200.0
the regulation term lambda/alpha is 661.4643060449866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.712928003290244
the lambda is 200.0
the regulation term lambda/alpha is 29.79325860518285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7835806242203864
the lambda is 200.0
the regulation term lambda/alpha is 255.23857254508744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14670692242724861
the lambda is 200.0
the regulation term lambda/alpha is 1363.2621875711368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.6128794020687476
the lambda is 200.0
the regulation term lambda/alpha is 76.54390778298071
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10432897311831658
the lambda is 200.0
the regulation term lambda/alpha is 1917.0130216194648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.064863186592309
the lambda is 200.0
the regulation term lambda/alpha is 3083.4131116172225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8752029516357939
the lambda is 200.0
the regulation term lambda/alpha is 228.5184249278307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24944814215674901
the lambda is 200.0
the regulation term lambda/alpha is 801.7698519250681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12788395048174725
the lambda is 200.0
the regulation term lambda/alpha is 1563.9179056213611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08571407820322
the lambda is 200.0
the regulation term lambda/alpha is 2333.3389822593535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07342460149411605
the lambda is 200.0
the regulation term lambda/alpha is 2723.8826759724016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1183.091438619887
the lambda is 200.0
the regulation term lambda/alpha is 0.16904864110360415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0565329301350034
the lambda is 200.0
the regulation term lambda/alpha is 3537.761080531121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0726113161796731
the lambda is 200.0
the regulation term lambda/alpha is 2754.391608948527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05659152176715362
the lambda is 200.0
the regulation term lambda/alpha is 3534.0982845964454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08914478306885286
the lambda is 200.0
the regulation term lambda/alpha is 2243.5412720172953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 404576318.23147404
the lambda is 200.0
the regulation term lambda/alpha is 4.943443078286458e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 192382.65035654258
the lambda is 200.0
the regulation term lambda/alpha is 0.0010395947848173429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.975439855507718
the lambda is 200.0
the regulation term lambda/alpha is 101.24327472809694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9764363301678696
the lambda is 200.0
the regulation term lambda/alpha is 204.8264631505629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99999905
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920000076e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05959894027781606
the lambda is 200.0
the regulation term lambda/alpha is 3355.764365401713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.24511560510716104
the lambda is 200.0
the regulation term lambda/alpha is 815.941522419851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 90.74566906117273
the lambda is 200.0
the regulation term lambda/alpha is 2.2039619308462823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15746223922385655
the lambda is 200.0
the regulation term lambda/alpha is 1270.1457885129498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 39861.09798723163
the lambda is 200.0
the regulation term lambda/alpha is 0.005017423254724802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 23.932421852610968
the lambda is 200.0
the regulation term lambda/alpha is 8.356864225096404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 136.53956796769376
the lambda is 200.0
the regulation term lambda/alpha is 1.4647768626843864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20569388345722858
the lambda is 200.0
the regulation term lambda/alpha is 972.318654490217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28879461024782976
the lambda is 200.0
the regulation term lambda/alpha is 692.5337000866101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08510109386871477
the lambda is 200.0
the regulation term lambda/alpha is 2350.1460546269764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1078.5809845310387
the lambda is 200.0
the regulation term lambda/alpha is 0.18542882070831143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 5869192.028192796
the lambda is 200.0
the regulation term lambda/alpha is 3.4076240654470923e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.766694324712958
the lambda is 200.0
the regulation term lambda/alpha is 22.813616238016657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061417999255604074
the lambda is 200.0
the regulation term lambda/alpha is 3256.374392263373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499992021.9795551
the lambda is 200.0
the regulation term lambda/alpha is 4.0000638251819564e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 2276.2640490323506
the lambda is 200.0
the regulation term lambda/alpha is 0.08786326880004139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05942577651359634
the lambda is 200.0
the regulation term lambda/alpha is 3365.542896258847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5728625889617376
the lambda is 200.0
the regulation term lambda/alpha is 349.12386295373585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.380272610014228
the lambda is 200.0
the regulation term lambda/alpha is 59.16682560083761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07279550088579546
the lambda is 200.0
the regulation term lambda/alpha is 2747.422540766195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13159258457990639
the lambda is 200.0
the regulation term lambda/alpha is 1519.8424792588132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22047987032437386
the lambda is 200.0
the regulation term lambda/alpha is 907.1122896877456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 27.416183218401674
the lambda is 200.0
the regulation term lambda/alpha is 7.294961461512283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 140.92447718878157
the lambda is 200.0
the regulation term lambda/alpha is 1.4191998720852534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 329460918.5311653
the lambda is 200.0
the regulation term lambda/alpha is 6.070522746420409e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.605661764314872
the lambda is 200.0
the regulation term lambda/alpha is 76.75593307582945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07120555852196789
the lambda is 200.0
the regulation term lambda/alpha is 2808.769485858288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.004985125894869
the lambda is 200.0
the regulation term lambda/alpha is 33.30566118100014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2572862484172807
the lambda is 200.0
the regulation term lambda/alpha is 777.3443051477404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2875.4410255467574
the lambda is 200.0
the regulation term lambda/alpha is 0.06955454771045792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07742988989145876
the lambda is 200.0
the regulation term lambda/alpha is 2582.9818469374045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12396561631711327
the lambda is 200.0
the regulation term lambda/alpha is 1613.3505881855588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16637664176313982
the lambda is 200.0
the regulation term lambda/alpha is 1202.091819383683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 123.39158396222089
the lambda is 200.0
the regulation term lambda/alpha is 1.620856087407343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10617677098242631
the lambda is 200.0
the regulation term lambda/alpha is 1883.6511804743309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 34.13846339613222
the lambda is 200.0
the regulation term lambda/alpha is 5.858494498690863
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999995.9274599
the lambda is 200.0
the regulation term lambda/alpha is 4.000000032580321e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08350300887899215
the lambda is 200.0
the regulation term lambda/alpha is 2395.123273819135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12275358012320225
the lambda is 200.0
the regulation term lambda/alpha is 1629.2803826924558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09999738808911304
the lambda is 200.0
the regulation term lambda/alpha is 2000.0522395821904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0996577353182182
the lambda is 200.0
the regulation term lambda/alpha is 2006.8688031227864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07351113207733555
the lambda is 200.0
the regulation term lambda/alpha is 2720.676370343406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.24570016940950157
the lambda is 200.0
the regulation term lambda/alpha is 814.0002527497879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.104798670721188
the lambda is 200.0
the regulation term lambda/alpha is 1908.4211528988828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1241441417015195
the lambda is 200.0
the regulation term lambda/alpha is 1611.0305106531825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 73.69239218285362
the lambda is 200.0
the regulation term lambda/alpha is 2.713984362235631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 39.696382284583585
the lambda is 200.0
the regulation term lambda/alpha is 5.038242491877443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6996671762825984
the lambda is 200.0
the regulation term lambda/alpha is 285.8501967501462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07566802088209884
the lambda is 200.0
the regulation term lambda/alpha is 2643.1245018503582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 10338.082384547286
the lambda is 200.0
the regulation term lambda/alpha is 0.01934594759072025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.053524650207701974
the lambda is 200.0
the regulation term lambda/alpha is 3736.596114573409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 422.8990356685518
the lambda is 200.0
the regulation term lambda/alpha is 0.47292611978607235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.92926794
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999925658563e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7328049089139197
the lambda is 200.0
the regulation term lambda/alpha is 272.9239359168831
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.98170777713323
the lambda is 200.0
the regulation term lambda/alpha is 11.122414093189395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 473099743.05348337
the lambda is 200.0
the regulation term lambda/alpha is 4.2274383560041425e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3103001838703314
the lambda is 200.0
the regulation term lambda/alpha is 644.5371623871683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8572969630030887
the lambda is 200.0
the regulation term lambda/alpha is 233.2913898346324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14161065412160218
the lambda is 200.0
the regulation term lambda/alpha is 1412.32311396753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 112.50143412691943
the lambda is 200.0
the regulation term lambda/alpha is 1.7777551153202928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.0969697277818105
the lambda is 200.0
the regulation term lambda/alpha is 39.23900095185371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1265470934882106
the lambda is 200.0
the regulation term lambda/alpha is 1580.4393011889476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.584906923918596
the lambda is 200.0
the regulation term lambda/alpha is 341.9347452071449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8092510620069198
the lambda is 200.0
the regulation term lambda/alpha is 247.14209148395264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 35.80673893848296
the lambda is 200.0
the regulation term lambda/alpha is 5.585540764927126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05863231356165208
the lambda is 200.0
the regulation term lambda/alpha is 3411.0883206015624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09959140452410217
the lambda is 200.0
the regulation term lambda/alpha is 2008.2054365605204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24900747813378243
the lambda is 200.0
the regulation term lambda/alpha is 803.1887295069406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 7502.750577996967
the lambda is 200.0
the regulation term lambda/alpha is 0.026656890419166065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.8977200908252129
the lambda is 200.0
the regulation term lambda/alpha is 222.78659244013758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 12.3939374445878
the lambda is 200.0
the regulation term lambda/alpha is 16.136921853461207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499635314.8102636
the lambda is 200.0
the regulation term lambda/alpha is 4.0029196109956715e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.49175914545119603
the lambda is 200.0
the regulation term lambda/alpha is 406.7031632253573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05771950548460491
the lambda is 200.0
the regulation term lambda/alpha is 3465.0331516326746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.060674005506231525
the lambda is 200.0
the regulation term lambda/alpha is 3296.304543128589
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5551414561483279
the lambda is 200.0
the regulation term lambda/alpha is 360.26853657739105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09780858017026088
the lambda is 200.0
the regulation term lambda/alpha is 2044.8103801511973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999990.6507405
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000747940774e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999896.0938244
the lambda is 200.0
the regulation term lambda/alpha is 4.0000008312495776e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07900845907600527
the lambda is 200.0
the regulation term lambda/alpha is 2531.374517855135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1801156374430133
the lambda is 200.0
the regulation term lambda/alpha is 169.47491724908002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4006923453816298
the lambda is 200.0
the regulation term lambda/alpha is 499.13606362885423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10694580621995865
the lambda is 200.0
the regulation term lambda/alpha is 1870.10605716183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08968681041009405
the lambda is 200.0
the regulation term lambda/alpha is 2229.9823026986637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 24.51154302630559
the lambda is 200.0
the regulation term lambda/alpha is 8.1594210444182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19503981805759898
the lambda is 200.0
the regulation term lambda/alpha is 1025.4316374563894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06948475514829475
the lambda is 200.0
the regulation term lambda/alpha is 2878.3292043435845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06063251554069854
the lambda is 200.0
the regulation term lambda/alpha is 3298.560157309545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06194301788877664
the lambda is 200.0
the regulation term lambda/alpha is 3228.7739089353877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5084929677958423
the lambda is 200.0
the regulation term lambda/alpha is 393.31910698182776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06436084833191487
the lambda is 200.0
the regulation term lambda/alpha is 3107.4792390644297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 16.876635342181206
the lambda is 200.0
the regulation term lambda/alpha is 11.850703410064389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07348070341685634
the lambda is 200.0
the regulation term lambda/alpha is 2721.8030135803024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07976947362943888
the lambda is 200.0
the regulation term lambda/alpha is 2507.2247678238423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 445674708.2622756
the lambda is 200.0
the regulation term lambda/alpha is 4.4875779642021284e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10250138426316502
the lambda is 200.0
the regulation term lambda/alpha is 1951.193161318819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07829278089029
the lambda is 200.0
the regulation term lambda/alpha is 2554.5139376292655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.261742794990392
the lambda is 200.0
the regulation term lambda/alpha is 21.594207961397775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9958264900592693
the lambda is 200.0
the regulation term lambda/alpha is 200.838200225118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09965272319409464
the lambda is 200.0
the regulation term lambda/alpha is 2006.969740409983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 774.1513017847707
the lambda is 200.0
the regulation term lambda/alpha is 0.25834743097235524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07103958265962142
the lambda is 200.0
the regulation term lambda/alpha is 2815.3318546123596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.68313608534394
the lambda is 200.0
the regulation term lambda/alpha is 29.92607025294581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6299814538348528
the lambda is 200.0
the regulation term lambda/alpha is 317.46966324572026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05879891677004222
the lambda is 200.0
the regulation term lambda/alpha is 3401.4232061822454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5343241628015927
the lambda is 200.0
the regulation term lambda/alpha is 130.3505509779699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.418910804088949
the lambda is 200.0
the regulation term lambda/alpha is 31.157934126861026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.284086647010096
the lambda is 200.0
the regulation term lambda/alpha is 87.56235244481772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07415205179685065
the lambda is 200.0
the regulation term lambda/alpha is 2697.1607009328136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 1713754.9288103858
the lambda is 200.0
the regulation term lambda/alpha is 0.00011670280075508306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  22  iterations
the alpha is 37747942.353435986
the lambda is 200.0
the regulation term lambda/alpha is 5.298302040608979e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0854424660134918
the lambda is 200.0
the regulation term lambda/alpha is 184.25665685859948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36380874618274583
the lambda is 200.0
the regulation term lambda/alpha is 549.739394938948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1664353.7680919291
the lambda is 200.0
the regulation term lambda/alpha is 0.00012016676011692315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12440400586289892
the lambda is 200.0
the regulation term lambda/alpha is 1607.6652726151974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 177.13533679551563
the lambda is 200.0
the regulation term lambda/alpha is 1.129080191553644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056165963841942584
the lambda is 200.0
the regulation term lambda/alpha is 3560.8754184798245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08101409258432081
the lambda is 200.0
the regulation term lambda/alpha is 2468.706290721416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 498654096.46598655
the lambda is 200.0
the regulation term lambda/alpha is 4.010796289801303e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.5910697492117296
the lambda is 200.0
the regulation term lambda/alpha is 77.18819613437468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06225938909849552
the lambda is 200.0
the regulation term lambda/alpha is 3212.366887885717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.7826750437680694
the lambda is 200.0
the regulation term lambda/alpha is 112.19094624068822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.450188176623625
the lambda is 200.0
the regulation term lambda/alpha is 21.16359973600613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.433007614426147
the lambda is 200.0
the regulation term lambda/alpha is 45.11609665391698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 316.0061372605231
the lambda is 200.0
the regulation term lambda/alpha is 0.632899100421949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24832838728307324
the lambda is 200.0
the regulation term lambda/alpha is 805.3851683578044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 23.08971827232425
the lambda is 200.0
the regulation term lambda/alpha is 8.661864022815886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14107813045795523
the lambda is 200.0
the regulation term lambda/alpha is 1417.6541704286685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15133208910785145
the lambda is 200.0
the regulation term lambda/alpha is 1321.5967689275992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5191794557302335
the lambda is 200.0
the regulation term lambda/alpha is 385.22325525900686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.9807447466558714
the lambda is 200.0
the regulation term lambda/alpha is 50.24185491119852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07215236574711026
the lambda is 200.0
the regulation term lambda/alpha is 2771.911882986458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08493992961563526
the lambda is 200.0
the regulation term lambda/alpha is 2354.6052004637536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7643551615079578
the lambda is 200.0
the regulation term lambda/alpha is 261.6584672568052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499591874.7620947
the lambda is 200.0
the regulation term lambda/alpha is 4.003267669139733e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 52145512.00908621
the lambda is 200.0
the regulation term lambda/alpha is 3.8354211569569124e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4913335841701036
the lambda is 200.0
the regulation term lambda/alpha is 134.10815804251862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28936794469489874
the lambda is 200.0
the regulation term lambda/alpha is 691.1615597604437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7655480215265699
the lambda is 200.0
the regulation term lambda/alpha is 261.25075681233227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05858629380876715
the lambda is 200.0
the regulation term lambda/alpha is 3413.7677432340156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1709293531888544
the lambda is 200.0
the regulation term lambda/alpha is 1170.0740467848514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06624956939632942
the lambda is 200.0
the regulation term lambda/alpha is 3018.8875463254117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15960683804246548
the lambda is 200.0
the regulation term lambda/alpha is 1253.079144057646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15020423347925974
the lambda is 200.0
the regulation term lambda/alpha is 1331.5203930494815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14988655116164845
the lambda is 200.0
the regulation term lambda/alpha is 1334.342530733832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.2713328730799118
the lambda is 200.0
the regulation term lambda/alpha is 157.31521164514768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054632292921135944
the lambda is 200.0
the regulation term lambda/alpha is 3660.838476772494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 159030.76149852155
the lambda is 200.0
the regulation term lambda/alpha is 0.0012576183256335558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8735684843736684
the lambda is 200.0
the regulation term lambda/alpha is 228.945988296952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 95.18684968336085
the lambda is 200.0
the regulation term lambda/alpha is 2.1011305728186214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6007903214877588
the lambda is 200.0
the regulation term lambda/alpha is 332.8948434201349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 100.15235845028847
the lambda is 200.0
the regulation term lambda/alpha is 1.9969574665510428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 12.040531645094292
the lambda is 200.0
the regulation term lambda/alpha is 16.61056221562165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15720932500143103
the lambda is 200.0
the regulation term lambda/alpha is 1272.1891656120238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 34204.81067856648
the lambda is 200.0
the regulation term lambda/alpha is 0.00584713074074474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.51273805557674
the lambda is 200.0
the regulation term lambda/alpha is 390.06271881854997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07442180942319361
the lambda is 200.0
the regulation term lambda/alpha is 2687.3842701501135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07423005916668
the lambda is 200.0
the regulation term lambda/alpha is 2694.326291063701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32287399098090014
the lambda is 200.0
the regulation term lambda/alpha is 619.4367015825414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 10913.123263364603
the lambda is 200.0
the regulation term lambda/alpha is 0.0183265592418809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.6825620255546605
the lambda is 200.0
the regulation term lambda/alpha is 74.55559204027983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14304482380097874
the lambda is 200.0
the regulation term lambda/alpha is 1398.163139955796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39453306110712344
the lambda is 200.0
the regulation term lambda/alpha is 506.928365999969
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06045733407755068
the lambda is 200.0
the regulation term lambda/alpha is 3308.118081148818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11390791305979267
the lambda is 200.0
the regulation term lambda/alpha is 1755.8042687957577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24850602078152353
the lambda is 200.0
the regulation term lambda/alpha is 804.8094745190577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.093173002829963
the lambda is 200.0
the regulation term lambda/alpha is 182.95365827938295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 31.948948580540456
the lambda is 200.0
the regulation term lambda/alpha is 6.259986913053424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.495178346768176
the lambda is 200.0
the regulation term lambda/alpha is 403.894882127454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 494776363.0600055
the lambda is 200.0
the regulation term lambda/alpha is 4.0422302868931597e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10508304536857958
the lambda is 200.0
the regulation term lambda/alpha is 1903.2566033702058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 327.9620072645958
the lambda is 200.0
the regulation term lambda/alpha is 0.6098267347127266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06522377430570496
the lambda is 200.0
the regulation term lambda/alpha is 3066.366553131325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07395196261831137
the lambda is 200.0
the regulation term lambda/alpha is 2704.458312110809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.058820106035465135
the lambda is 200.0
the regulation term lambda/alpha is 3400.1978826663712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.084427609705841
the lambda is 200.0
the regulation term lambda/alpha is 2368.893312233182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0616767156785811
the lambda is 200.0
the regulation term lambda/alpha is 188.38126243747186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999576
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000339e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 37.8547187387498
the lambda is 200.0
the regulation term lambda/alpha is 5.283357178804526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1513336094349848
the lambda is 200.0
the regulation term lambda/alpha is 1321.5834919071497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 941.4168676769627
the lambda is 200.0
the regulation term lambda/alpha is 0.21244573670484507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33592743635707567
the lambda is 200.0
the regulation term lambda/alpha is 595.366672543558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08282142762434129
the lambda is 200.0
the regulation term lambda/alpha is 2414.8340077781977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31954469510354244
the lambda is 200.0
the regulation term lambda/alpha is 625.8905344530716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07958230706991812
the lambda is 200.0
the regulation term lambda/alpha is 2513.1214130835297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09159758289901927
the lambda is 200.0
the regulation term lambda/alpha is 2183.4637298288512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09543309617628139
the lambda is 200.0
the regulation term lambda/alpha is 2095.709015146753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 27104.209461799455
the lambda is 200.0
the regulation term lambda/alpha is 0.007378927626790925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 24438.896565092142
the lambda is 200.0
the regulation term lambda/alpha is 0.008183675538185902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06266888221240169
the lambda is 200.0
the regulation term lambda/alpha is 3191.376532329813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 470696947.2167236
the lambda is 200.0
the regulation term lambda/alpha is 4.2490184222060344e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14536508807804976
the lambda is 200.0
the regulation term lambda/alpha is 1375.8461721745425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11315164101828117
the lambda is 200.0
the regulation term lambda/alpha is 1767.5395442801162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 341993.2043115792
the lambda is 200.0
the regulation term lambda/alpha is 0.0005848069420051584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1270908893876111
the lambda is 200.0
the regulation term lambda/alpha is 1573.676924944835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07488513382753999
the lambda is 200.0
the regulation term lambda/alpha is 2670.757061883588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06702671529782168
the lambda is 200.0
the regulation term lambda/alpha is 2983.88484518948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1505576097764807
the lambda is 200.0
the regulation term lambda/alpha is 1328.3951591481955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 608.8356356377116
the lambda is 200.0
the regulation term lambda/alpha is 0.3284958834423586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37558337128454694
the lambda is 200.0
the regulation term lambda/alpha is 532.5049384267796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.586421306571388
the lambda is 200.0
the regulation term lambda/alpha is 43.60698388380535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37332598202348277
the lambda is 200.0
the regulation term lambda/alpha is 535.7248346765741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.567168181690693
the lambda is 200.0
the regulation term lambda/alpha is 77.9068552759498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8967626736219898
the lambda is 200.0
the regulation term lambda/alpha is 223.0244476971903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.653250396010946
the lambda is 200.0
the regulation term lambda/alpha is 75.37924061019339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 9861.667908142546
the lambda is 200.0
the regulation term lambda/alpha is 0.020280545021685907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0684869722613869
the lambda is 200.0
the regulation term lambda/alpha is 2920.263422314559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08520927563058132
the lambda is 200.0
the regulation term lambda/alpha is 2347.162307388759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13162558965312113
the lambda is 200.0
the regulation term lambda/alpha is 1519.46137925816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12964084752894234
the lambda is 200.0
the regulation term lambda/alpha is 1542.723638514859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.261318480502331
the lambda is 200.0
the regulation term lambda/alpha is 88.44397714185392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6176038573445884
the lambda is 200.0
the regulation term lambda/alpha is 323.8321743324397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15337122042778173
the lambda is 200.0
the regulation term lambda/alpha is 1304.0256147285108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5884998621081596
the lambda is 200.0
the regulation term lambda/alpha is 339.8471484488509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 18.871265040244378
the lambda is 200.0
the regulation term lambda/alpha is 10.598123632596177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06753061393323302
the lambda is 200.0
the regulation term lambda/alpha is 2961.6197506769063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.43660106021171324
the lambda is 200.0
the regulation term lambda/alpha is 458.0840914655991
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2900865297036797
the lambda is 200.0
the regulation term lambda/alpha is 689.4494556651695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07438611819408493
the lambda is 200.0
the regulation term lambda/alpha is 2688.673704926623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4072156495716842
the lambda is 200.0
the regulation term lambda/alpha is 491.14025998353236
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10356396506539278
the lambda is 200.0
the regulation term lambda/alpha is 1931.1736459077747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2902058739133908
the lambda is 200.0
the regulation term lambda/alpha is 689.1659265990188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09456686662226912
the lambda is 200.0
the regulation term lambda/alpha is 2114.9056444776284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2088320924359163
the lambda is 200.0
the regulation term lambda/alpha is 957.7072071016739
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 11.166494184863451
the lambda is 200.0
the regulation term lambda/alpha is 17.910724412600917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0314052269523513
the lambda is 200.0
the regulation term lambda/alpha is 193.91020597303952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10950362926239227
the lambda is 200.0
the regulation term lambda/alpha is 1826.4234833784421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 28.14243700426225
the lambda is 200.0
the regulation term lambda/alpha is 7.106705079226417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06349658796817588
the lambda is 200.0
the regulation term lambda/alpha is 3149.7755454236194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 113.90979284521585
the lambda is 200.0
the regulation term lambda/alpha is 1.755775293804337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 7258.940080740571
the lambda is 200.0
the regulation term lambda/alpha is 0.027552231837626028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 6783.942465021054
the lambda is 200.0
the regulation term lambda/alpha is 0.029481382106529893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 3054098.5337072923
the lambda is 200.0
the regulation term lambda/alpha is 6.548577192014335e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2631362311805443
the lambda is 200.0
the regulation term lambda/alpha is 158.33604884651064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8095937318759121
the lambda is 200.0
the regulation term lambda/alpha is 247.0374857480423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 36.83263456537186
the lambda is 200.0
the regulation term lambda/alpha is 5.429967265714673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20352400315337746
the lambda is 200.0
the regulation term lambda/alpha is 982.685073510854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16677344589594428
the lambda is 200.0
the regulation term lambda/alpha is 1199.2316817917579
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12941834532942464
the lambda is 200.0
the regulation term lambda/alpha is 1545.375962665224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1359704250233306
the lambda is 200.0
the regulation term lambda/alpha is 1470.908103476788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499128513.2431536
the lambda is 200.0
the regulation term lambda/alpha is 4.0069840670987425e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07817051776954727
the lambda is 200.0
the regulation term lambda/alpha is 2558.509342225613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 56.58744625542314
the lambda is 200.0
the regulation term lambda/alpha is 3.534352815591722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06806175895142269
the lambda is 200.0
the regulation term lambda/alpha is 2938.507659532349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0735736728937997
the lambda is 200.0
the regulation term lambda/alpha is 2718.36367729923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06280764880190073
the lambda is 200.0
the regulation term lambda/alpha is 3184.325537018788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17492589451254623
the lambda is 200.0
the regulation term lambda/alpha is 1143.3413020829537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06548688867790327
the lambda is 200.0
the regulation term lambda/alpha is 3054.046451705751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06407040494296391
the lambda is 200.0
the regulation term lambda/alpha is 3121.5660362696617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14300074999536092
the lambda is 200.0
the regulation term lambda/alpha is 1398.5940633632215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0892222426503528
the lambda is 200.0
the regulation term lambda/alpha is 183.6172565787396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24778163625775523
the lambda is 200.0
the regulation term lambda/alpha is 807.16231848574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19942451948550374
the lambda is 200.0
the regulation term lambda/alpha is 1002.8857059100905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4756471415388627
the lambda is 200.0
the regulation term lambda/alpha is 420.47976858000106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10484867029634079
the lambda is 200.0
the regulation term lambda/alpha is 1907.5110770096242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0808544600336559
the lambda is 200.0
the regulation term lambda/alpha is 2473.5803061049373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.5170274558985333
the lambda is 200.0
the regulation term lambda/alpha is 79.45880746406225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31485162772398423
the lambda is 200.0
the regulation term lambda/alpha is 635.2198381369992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1175318809342809
the lambda is 200.0
the regulation term lambda/alpha is 1701.6659514862351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499910119.2115077
the lambda is 200.0
the regulation term lambda/alpha is 4.000719175588076e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09169550138592317
the lambda is 200.0
the regulation term lambda/alpha is 2181.1320836586146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9967461481750036
the lambda is 200.0
the regulation term lambda/alpha is 200.6528947878964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07722431373186309
the lambda is 200.0
the regulation term lambda/alpha is 2589.8579130717367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1458570527778694
the lambda is 200.0
the regulation term lambda/alpha is 1371.205548110085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15597238446690834
the lambda is 200.0
the regulation term lambda/alpha is 1282.27827434691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.103662399347233
the lambda is 200.0
the regulation term lambda/alpha is 181.21483536839804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 831.4613168030739
the lambda is 200.0
the regulation term lambda/alpha is 0.24054035462406084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 3081.8414351843503
the lambda is 200.0
the regulation term lambda/alpha is 0.06489626549785042
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.52336013800481
the lambda is 200.0
the regulation term lambda/alpha is 26.58386629528543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 32.32717388200588
the lambda is 200.0
the regulation term lambda/alpha is 6.186745576028378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0654752086028266
the lambda is 200.0
the regulation term lambda/alpha is 3054.5912608419835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6426057516466759
the lambda is 200.0
the regulation term lambda/alpha is 311.23281963707984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8399927143059556
the lambda is 200.0
the regulation term lambda/alpha is 238.0973032191715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999993.7694374
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000498445017e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18391664782221792
the lambda is 200.0
the regulation term lambda/alpha is 1087.4491372490052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1077909332413627
the lambda is 200.0
the regulation term lambda/alpha is 1855.4436257840455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 28938171.81886135
the lambda is 200.0
the regulation term lambda/alpha is 6.911286630402954e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10527951318552271
the lambda is 200.0
the regulation term lambda/alpha is 1899.7048328629864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08551808791236686
the lambda is 200.0
the regulation term lambda/alpha is 2338.6865268192905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12068042251870954
the lambda is 200.0
the regulation term lambda/alpha is 1657.2696368293975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.417172332803018
the lambda is 200.0
the regulation term lambda/alpha is 45.277834988404315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5926348379715372
the lambda is 200.0
the regulation term lambda/alpha is 337.4759416516204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13758383106226318
the lambda is 200.0
the regulation term lambda/alpha is 1453.6591869541019
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 1442.3152606416077
the lambda is 200.0
the regulation term lambda/alpha is 0.1386659390340437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14695275735303606
the lambda is 200.0
the regulation term lambda/alpha is 1360.9816079838802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07665717932337476
the lambda is 200.0
the regulation term lambda/alpha is 2609.018512882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05639610816168028
the lambda is 200.0
the regulation term lambda/alpha is 3546.3440035015556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3645205971321234
the lambda is 200.0
the regulation term lambda/alpha is 548.665841034789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 498489954.8236319
the lambda is 200.0
the regulation term lambda/alpha is 4.012116955711995e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07198721906581364
the lambda is 200.0
the regulation term lambda/alpha is 2778.2709569201706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38294245283357714
the lambda is 200.0
the regulation term lambda/alpha is 522.2716847403648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1415512929935927
the lambda is 200.0
the regulation term lambda/alpha is 175.20018699774934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061946468809905
the lambda is 200.0
the regulation term lambda/alpha is 3228.5940400209024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.844839733132519
the lambda is 200.0
the regulation term lambda/alpha is 70.30273012243659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 330.23226549931417
the lambda is 200.0
the regulation term lambda/alpha is 0.6056343395082797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11599996860800578
the lambda is 200.0
the regulation term lambda/alpha is 1724.138397621919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06980446238424201
the lambda is 200.0
the regulation term lambda/alpha is 2865.1463412050994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3132084332458221
the lambda is 200.0
the regulation term lambda/alpha is 638.5524103785217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6021640407435234
the lambda is 200.0
the regulation term lambda/alpha is 332.13540907067375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 32.479812168826584
the lambda is 200.0
the regulation term lambda/alpha is 6.157671077665764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13229130759895047
the lambda is 200.0
the regulation term lambda/alpha is 1511.8151270098012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.830507044236
the lambda is 200.0
the regulation term lambda/alpha is 109.25934463337404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1374525573431225
the lambda is 200.0
the regulation term lambda/alpha is 1455.04750050405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2700178165464192
the lambda is 200.0
the regulation term lambda/alpha is 740.6918645518996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 424968001.03548676
the lambda is 200.0
the regulation term lambda/alpha is 4.7062366934139847e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6051948608726824
the lambda is 200.0
the regulation term lambda/alpha is 330.47207260088567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 624.7470646422779
the lambda is 200.0
the regulation term lambda/alpha is 0.3201295553337532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09820687149571858
the lambda is 200.0
the regulation term lambda/alpha is 2036.5173735192163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07424125193056451
the lambda is 200.0
the regulation term lambda/alpha is 2693.9200888887713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1892849911629137
the lambda is 200.0
the regulation term lambda/alpha is 1056.6078101135029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 38810.548490613604
the lambda is 200.0
the regulation term lambda/alpha is 0.0051532381730799385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 177524556.21695623
the lambda is 200.0
the regulation term lambda/alpha is 1.1266047033829848e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.107856586913972
the lambda is 200.0
the regulation term lambda/alpha is 1854.3141937128323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.058041420530295214
the lambda is 200.0
the regulation term lambda/alpha is 3445.8150433380297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 278925787.1766233
the lambda is 200.0
the regulation term lambda/alpha is 7.17036606849673e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24274589584008702
the lambda is 200.0
the regulation term lambda/alpha is 823.9068236677971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 906805.9719777497
the lambda is 200.0
the regulation term lambda/alpha is 0.000220554348096979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.253153912186811
the lambda is 200.0
the regulation term lambda/alpha is 31.983860114208728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 116544842.43586758
the lambda is 200.0
the regulation term lambda/alpha is 1.716077655774911e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.7189639569743081
the lambda is 200.0
the regulation term lambda/alpha is 278.1780617232623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.131785231969135
the lambda is 200.0
the regulation term lambda/alpha is 1517.6207304232796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08701622426565066
the lambda is 200.0
the regulation term lambda/alpha is 2298.4219516284998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.534994589815545
the lambda is 200.0
the regulation term lambda/alpha is 130.29361883551218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07579176585654449
the lambda is 200.0
the regulation term lambda/alpha is 2638.809080904009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06504388451884587
the lambda is 200.0
the regulation term lambda/alpha is 3074.8471048350725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 21.432320761900915
the lambda is 200.0
the regulation term lambda/alpha is 9.331700576053773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3265356922775408
the lambda is 200.0
the regulation term lambda/alpha is 612.4904711182656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22200735319157106
the lambda is 200.0
the regulation term lambda/alpha is 900.8710618130706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4892097995157971
the lambda is 200.0
the regulation term lambda/alpha is 134.2994117182335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 21.113194609231847
the lambda is 200.0
the regulation term lambda/alpha is 9.472749325795967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.510468139112815
the lambda is 200.0
the regulation term lambda/alpha is 79.66641634841812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 37.77415241206798
the lambda is 200.0
the regulation term lambda/alpha is 5.294625748799186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0613376056173739
the lambda is 200.0
the regulation term lambda/alpha is 3260.6424392827935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12284319184576294
the lambda is 200.0
the regulation term lambda/alpha is 1628.0918542975676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26832830431365573
the lambda is 200.0
the regulation term lambda/alpha is 745.3555841288177
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12083730856645962
the lambda is 200.0
the regulation term lambda/alpha is 1655.1179629261726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 959.206568304591
the lambda is 200.0
the regulation term lambda/alpha is 0.20850566145882674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11128803483080704
the lambda is 200.0
the regulation term lambda/alpha is 1797.1383923174055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06415243199871805
the lambda is 200.0
the regulation term lambda/alpha is 3117.574716481467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.912801152317886
the lambda is 200.0
the regulation term lambda/alpha is 33.82491561069963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0599574044347544
the lambda is 200.0
the regulation term lambda/alpha is 3335.7014348017656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08237625915381674
the lambda is 200.0
the regulation term lambda/alpha is 2427.8839808269367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7435729913487764
the lambda is 200.0
the regulation term lambda/alpha is 268.97157686862386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3954506450554729
the lambda is 200.0
the regulation term lambda/alpha is 505.7521147093956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2021880183585886
the lambda is 200.0
the regulation term lambda/alpha is 989.1782986135803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19861117277493792
the lambda is 200.0
the regulation term lambda/alpha is 1006.9926943467368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.866961493230255
the lambda is 200.0
the regulation term lambda/alpha is 69.76026726283531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08947532118135308
the lambda is 200.0
the regulation term lambda/alpha is 2235.2532224458846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.675170493417501
the lambda is 200.0
the regulation term lambda/alpha is 29.96178153010824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08493339711840875
the lambda is 200.0
the regulation term lambda/alpha is 2354.7863006253324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09518924198308777
the lambda is 200.0
the regulation term lambda/alpha is 2101.077767123452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.657412472872651
the lambda is 200.0
the regulation term lambda/alpha is 42.94229921977294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2831537757497632
the lambda is 200.0
the regulation term lambda/alpha is 706.3299773079832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 495915881.3828911
the lambda is 200.0
the regulation term lambda/alpha is 4.032942027230264e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6090924840522678
the lambda is 200.0
the regulation term lambda/alpha is 124.29366365339598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 262.6541680936609
the lambda is 200.0
the regulation term lambda/alpha is 0.761457552536083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06272900868481389
the lambda is 200.0
the regulation term lambda/alpha is 3188.317561415858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06674171757996718
the lambda is 200.0
the regulation term lambda/alpha is 2996.626506657822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 128.52148611841173
the lambda is 200.0
the regulation term lambda/alpha is 1.5561600323834754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 20.16819625399398
the lambda is 200.0
the regulation term lambda/alpha is 9.916603224266686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.057372269117909984
the lambda is 200.0
the regulation term lambda/alpha is 3486.0047035784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17923205318484553
the lambda is 200.0
the regulation term lambda/alpha is 1115.8718345637433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20418067889384936
the lambda is 200.0
the regulation term lambda/alpha is 979.5246106708126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.99278664113133
the lambda is 200.0
the regulation term lambda/alpha is 201.45315389426474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06275787343519425
the lambda is 200.0
the regulation term lambda/alpha is 3186.851132018141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07584087150775144
the lambda is 200.0
the regulation term lambda/alpha is 2637.1004977119583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.17354958292165257
the lambda is 200.0
the regulation term lambda/alpha is 1152.4084162754125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.632798484352138
the lambda is 200.0
the regulation term lambda/alpha is 75.96479608625067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.191127851582541
the lambda is 200.0
the regulation term lambda/alpha is 21.760115105521432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10385416718254628
the lambda is 200.0
the regulation term lambda/alpha is 1925.7773224299851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06072345376429792
the lambda is 200.0
the regulation term lambda/alpha is 3293.620299930784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 41.838862760805526
the lambda is 200.0
the regulation term lambda/alpha is 4.7802446530014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08729245222524783
the lambda is 200.0
the regulation term lambda/alpha is 2291.148832477792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3324221672966251
the lambda is 200.0
the regulation term lambda/alpha is 601.6445943616543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 10.961907447664615
the lambda is 200.0
the regulation term lambda/alpha is 18.244999873868586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24908836226893716
the lambda is 200.0
the regulation term lambda/alpha is 802.927917539812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09815005804450816
the lambda is 200.0
the regulation term lambda/alpha is 2037.6961968713854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0765822856821433
the lambda is 200.0
the regulation term lambda/alpha is 2611.570002364581
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3934588810697615
the lambda is 200.0
the regulation term lambda/alpha is 508.3123284858307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9572786
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992341771e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0725021358112061
the lambda is 200.0
the regulation term lambda/alpha is 2758.539424559787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.648093970665432
the lambda is 200.0
the regulation term lambda/alpha is 121.3523036670344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.5461602763523525
the lambda is 200.0
the regulation term lambda/alpha is 56.39903005335218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2566677517274509
the lambda is 200.0
the regulation term lambda/alpha is 779.2174850714205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06014441246810859
the lambda is 200.0
the regulation term lambda/alpha is 3325.3296822219263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14051311385087464
the lambda is 200.0
the regulation term lambda/alpha is 1423.354692802967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.054086640388578
the lambda is 200.0
the regulation term lambda/alpha is 39.571937370789364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1337000191874361
the lambda is 200.0
the regulation term lambda/alpha is 1495.8860979639574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.8766175146242656
the lambda is 200.0
the regulation term lambda/alpha is 106.57472737061381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0793666640054812
the lambda is 200.0
the regulation term lambda/alpha is 2519.9496855025636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499991532.6206954
the lambda is 200.0
the regulation term lambda/alpha is 4.0000677401816e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06121677123575213
the lambda is 200.0
the regulation term lambda/alpha is 3267.07854665806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  23  iterations
the alpha is 616440.7847630391
the lambda is 200.0
the regulation term lambda/alpha is 0.0003244431662270373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 22344584.57845445
the lambda is 200.0
the regulation term lambda/alpha is 8.95071462607759e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09259849365665722
the lambda is 200.0
the regulation term lambda/alpha is 2159.86234875022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0745204442184786
the lambda is 200.0
the regulation term lambda/alpha is 2683.827265087701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15483364416220635
the lambda is 200.0
the regulation term lambda/alpha is 1291.7089246473888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07304537428749043
the lambda is 200.0
the regulation term lambda/alpha is 2738.0241658129407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  22  iterations
the alpha is 21950267.658794444
the lambda is 200.0
the regulation term lambda/alpha is 9.111506206160969e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.062187429144051586
the lambda is 200.0
the regulation term lambda/alpha is 3216.084066390942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.665087452337634
the lambda is 200.0
the regulation term lambda/alpha is 30.00710814827409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1203808.304418344
the lambda is 200.0
the regulation term lambda/alpha is 0.0001661394087961837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.427811521152726
the lambda is 200.0
the regulation term lambda/alpha is 11.475910200041653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28126654322241
the lambda is 200.0
the regulation term lambda/alpha is 711.0692857694456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08257089565525494
the lambda is 200.0
the regulation term lambda/alpha is 2422.160961351661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07780567673847469
the lambda is 200.0
the regulation term lambda/alpha is 2570.5065283636377
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07424680262308181
the lambda is 200.0
the regulation term lambda/alpha is 2693.7186913665705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16090208480238766
the lambda is 200.0
the regulation term lambda/alpha is 1242.9919739426034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1064779141398822
the lambda is 200.0
the regulation term lambda/alpha is 1878.3237971515478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12075342389796545
the lambda is 200.0
the regulation term lambda/alpha is 1656.2677358862845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10444282464760433
the lambda is 200.0
the regulation term lambda/alpha is 1914.9233149793743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08300409814309913
the lambda is 200.0
the regulation term lambda/alpha is 2409.519583662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05777957218948197
the lambda is 200.0
the regulation term lambda/alpha is 3461.430959442227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3240970838742345
the lambda is 200.0
the regulation term lambda/alpha is 617.0990420808901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14260253523628358
the lambda is 200.0
the regulation term lambda/alpha is 1402.4996096220336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.849143362596672
the lambda is 200.0
the regulation term lambda/alpha is 235.53148833243185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11935541092769712
the lambda is 200.0
the regulation term lambda/alpha is 1675.667642090861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07249404706195943
the lambda is 200.0
the regulation term lambda/alpha is 2758.8472171937565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07006446007413818
the lambda is 200.0
the regulation term lambda/alpha is 2854.5142542791527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.504005744964832
the lambda is 200.0
the regulation term lambda/alpha is 26.652431620831244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08227320674040181
the lambda is 200.0
the regulation term lambda/alpha is 2430.9250596134384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0656847830558246
the lambda is 200.0
the regulation term lambda/alpha is 3044.845254798554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2576313839326491
the lambda is 200.0
the regulation term lambda/alpha is 776.3029369600588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09390925305244893
the lambda is 200.0
the regulation term lambda/alpha is 2129.7155871136433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2528872433768453
the lambda is 200.0
the regulation term lambda/alpha is 790.8663059843068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999999.77762693
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000017789845e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 232089024.65465853
the lambda is 200.0
the regulation term lambda/alpha is 8.617382933018654e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.743543306704105
the lambda is 200.0
the regulation term lambda/alpha is 11.944902959693133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.261843361341476
the lambda is 200.0
the regulation term lambda/alpha is 46.92805038640537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07117209171407389
the lambda is 200.0
the regulation term lambda/alpha is 2810.090235980111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.058481922055753706
the lambda is 200.0
the regulation term lambda/alpha is 3419.860240047003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7113885023467824
the lambda is 200.0
the regulation term lambda/alpha is 281.1403323784751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2019245607605578
the lambda is 200.0
the regulation term lambda/alpha is 166.39979457067034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 26.829558081244308
the lambda is 200.0
the regulation term lambda/alpha is 7.454464937304117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2412885973121646
the lambda is 200.0
the regulation term lambda/alpha is 161.12288506723723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08573645592451899
the lambda is 200.0
the regulation term lambda/alpha is 2332.72996700583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17452479495949347
the lambda is 200.0
the regulation term lambda/alpha is 1145.9689727549558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 76.61367589832491
the lambda is 200.0
the regulation term lambda/alpha is 2.610499987827536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41847476449374393
the lambda is 200.0
the regulation term lambda/alpha is 477.9260709829253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.839407644737507
the lambda is 200.0
the regulation term lambda/alpha is 18.451192773167755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05668751792154819
the lambda is 200.0
the regulation term lambda/alpha is 3528.1135483262274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 419859.7472572749
the lambda is 200.0
the regulation term lambda/alpha is 0.00047634954602458524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05587228969013502
the lambda is 200.0
the regulation term lambda/alpha is 3579.591978585274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10960134719800646
the lambda is 200.0
the regulation term lambda/alpha is 1824.7950879534244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 188900.2466853045
the lambda is 200.0
the regulation term lambda/alpha is 0.001058759866699311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.120283256430507
the lambda is 200.0
the regulation term lambda/alpha is 1662.7418140740888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2077817333196301
the lambda is 200.0
the regulation term lambda/alpha is 165.5928339388716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9939726
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992048219e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0622429516374025
the lambda is 200.0
the regulation term lambda/alpha is 3213.2152274060495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07085251418283607
the lambda is 200.0
the regulation term lambda/alpha is 2822.7650395566307
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07932466514865037
the lambda is 200.0
the regulation term lambda/alpha is 2521.283885979351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2616903287099369
the lambda is 200.0
the regulation term lambda/alpha is 764.2620993521095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21752426996776741
the lambda is 200.0
the regulation term lambda/alpha is 919.4376334633182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499996168.2708489
the lambda is 200.0
the regulation term lambda/alpha is 4.0000306540681254e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10111542809143653
the lambda is 200.0
the regulation term lambda/alpha is 1977.9375291685878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0571979739563513
the lambda is 200.0
the regulation term lambda/alpha is 189.17932584711653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 48604035.2341971
the lambda is 200.0
the regulation term lambda/alpha is 4.114884680588884e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3657300605728129
the lambda is 200.0
the regulation term lambda/alpha is 546.8514119040597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10811862896728905
the lambda is 200.0
the regulation term lambda/alpha is 1849.8199793165095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999993
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920000055e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10806282881230939
the lambda is 200.0
the regulation term lambda/alpha is 1850.7751666150914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2481079858700145
the lambda is 200.0
the regulation term lambda/alpha is 806.100615015195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.6133702796942355
the lambda is 200.0
the regulation term lambda/alpha is 26.269574794414478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07208586695896853
the lambda is 200.0
the regulation term lambda/alpha is 2774.468955389557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  23  iterations
the alpha is 14179.218207372493
the lambda is 200.0
the regulation term lambda/alpha is 0.014105150021318515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.461997566707079
the lambda is 200.0
the regulation term lambda/alpha is 26.802474566908554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10176201144200676
the lambda is 200.0
the regulation term lambda/alpha is 1965.3699564889023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14123908755766512
the lambda is 200.0
the regulation term lambda/alpha is 1416.038601342167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16011970603883394
the lambda is 200.0
the regulation term lambda/alpha is 1249.0654957328854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15783190123355365
the lambda is 200.0
the regulation term lambda/alpha is 1267.1709485653828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06194986973816344
the lambda is 200.0
the regulation term lambda/alpha is 3228.4167964406956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 471260912.23372364
the lambda is 200.0
the regulation term lambda/alpha is 4.243933557994923e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08473982757727574
the lambda is 200.0
the regulation term lambda/alpha is 2360.1652932042666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 186073021.26762015
the lambda is 200.0
the regulation term lambda/alpha is 1.0748468458108677e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.97347057211481
the lambda is 200.0
the regulation term lambda/alpha is 40.213367526764394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6913519809695745
the lambda is 200.0
the regulation term lambda/alpha is 289.28824318911114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 9.232160776608143
the lambda is 200.0
the regulation term lambda/alpha is 21.66340089166852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07600632589617863
the lambda is 200.0
the regulation term lambda/alpha is 2631.359924872456
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30129964113854585
the lambda is 200.0
the regulation term lambda/alpha is 663.7910328875383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4565549219907112
the lambda is 200.0
the regulation term lambda/alpha is 438.0633969029231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08772654855463766
the lambda is 200.0
the regulation term lambda/alpha is 2279.81156554263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06478909956035438
the lambda is 200.0
the regulation term lambda/alpha is 3086.9390276629747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07536877918113033
the lambda is 200.0
the regulation term lambda/alpha is 2653.618675703227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 253663.76526169942
the lambda is 200.0
the regulation term lambda/alpha is 0.0007884452861986982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15463529102683618
the lambda is 200.0
the regulation term lambda/alpha is 1293.365820130225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7741541268137854
the lambda is 200.0
the regulation term lambda/alpha is 258.3464882156572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 9778.013570150588
the lambda is 200.0
the regulation term lambda/alpha is 0.020454052202437255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05213907195926081
the lambda is 200.0
the regulation term lambda/alpha is 3835.8948957946786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08385454841768648
the lambda is 200.0
the regulation term lambda/alpha is 2385.0823094745365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07331089290735567
the lambda is 200.0
the regulation term lambda/alpha is 2728.107544028194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999969.91591066
the lambda is 200.0
the regulation term lambda/alpha is 4.000000240672729e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1285876566841297
the lambda is 200.0
the regulation term lambda/alpha is 1555.3592402052384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06767529950040482
the lambda is 200.0
the regulation term lambda/alpha is 2955.2879924647195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8769129320736299
the lambda is 200.0
the regulation term lambda/alpha is 228.0728139418145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36731184719452914
the lambda is 200.0
the regulation term lambda/alpha is 544.4964586020542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.058407754932052365
the lambda is 200.0
the regulation term lambda/alpha is 3424.202834583635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7680917506488917
the lambda is 200.0
the regulation term lambda/alpha is 260.38555918747727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1092659655816412
the lambda is 200.0
the regulation term lambda/alpha is 1830.396125045582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05740200644495458
the lambda is 200.0
the regulation term lambda/alpha is 3484.1987656265846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10310033337332437
the lambda is 200.0
the regulation term lambda/alpha is 1939.8579369845852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06462316251571079
the lambda is 200.0
the regulation term lambda/alpha is 3094.865559254814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.203225492687949
the lambda is 200.0
the regulation term lambda/alpha is 32.24129128237398
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.9042605283294
the lambda is 200.0
the regulation term lambda/alpha is 11.170525567562297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2478976032023281
the lambda is 200.0
the regulation term lambda/alpha is 160.26956016804928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4357445003500625
the lambda is 200.0
the regulation term lambda/alpha is 458.984565127791
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 33396.96618972267
the lambda is 200.0
the regulation term lambda/alpha is 0.00598856790954702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.37658597809507954
the lambda is 200.0
the regulation term lambda/alpha is 531.0872194755601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11298109700759357
the lambda is 200.0
the regulation term lambda/alpha is 1770.2076302778137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28172209413540533
the lambda is 200.0
the regulation term lambda/alpha is 709.9194708664671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11854751442576116
the lambda is 200.0
the regulation term lambda/alpha is 1687.0872490983134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4494614937532462
the lambda is 200.0
the regulation term lambda/alpha is 137.9822788407566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0235915950911822
the lambda is 200.0
the regulation term lambda/alpha is 195.39042813475217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.99500641889991
the lambda is 200.0
the regulation term lambda/alpha is 201.00372841928214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1236038552481384
the lambda is 200.0
the regulation term lambda/alpha is 1618.072507516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 11.090714251604979
the lambda is 200.0
the regulation term lambda/alpha is 18.033103681402416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9969843
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992024126e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 31.88673610140091
the lambda is 200.0
the regulation term lambda/alpha is 6.2722004335593695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1239277633712361
the lambda is 200.0
the regulation term lambda/alpha is 1613.843375845355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 9655373.354611903
the lambda is 200.0
the regulation term lambda/alpha is 2.071385462318448e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17277235396438714
the lambda is 200.0
the regulation term lambda/alpha is 1157.592609065367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13227465996964372
the lambda is 200.0
the regulation term lambda/alpha is 1512.0053988110712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 2707574.7804988255
the lambda is 200.0
the regulation term lambda/alpha is 7.386684254872301e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5913827869462613
the lambda is 200.0
the regulation term lambda/alpha is 338.19043167073767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05391357971436522
the lambda is 200.0
the regulation term lambda/alpha is 3709.640522102267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.225568092745492
the lambda is 200.0
the regulation term lambda/alpha is 89.86469596321233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.331367560299665
the lambda is 200.0
the regulation term lambda/alpha is 603.5593822736732
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 498199605.68215364
the lambda is 200.0
the regulation term lambda/alpha is 4.0144552046795075e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07230498263216717
the lambda is 200.0
the regulation term lambda/alpha is 2766.06110283503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3878553440235053
the lambda is 200.0
the regulation term lambda/alpha is 144.10723773284886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39256024564131037
the lambda is 200.0
the regulation term lambda/alpha is 509.4759396058248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 132168.79169584415
the lambda is 200.0
the regulation term lambda/alpha is 0.0015132165273951635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7525307423587658
the lambda is 200.0
the regulation term lambda/alpha is 265.76987323217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.9469316108405783
the lambda is 200.0
the regulation term lambda/alpha is 50.67227398890907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15580312509918068
the lambda is 200.0
the regulation term lambda/alpha is 1283.6712991006093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4194701654323127
the lambda is 200.0
the regulation term lambda/alpha is 476.7919544263101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.572078300815081
the lambda is 200.0
the regulation term lambda/alpha is 30.43177376252435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08686133709406119
the lambda is 200.0
the regulation term lambda/alpha is 2302.5203927430016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.3143191205772675
the lambda is 200.0
the regulation term lambda/alpha is 46.35725694144745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08284671258833304
the lambda is 200.0
the regulation term lambda/alpha is 2414.096996145206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13565050773304635
the lambda is 200.0
the regulation term lambda/alpha is 1474.3770837451661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05224616829936766
the lambda is 200.0
the regulation term lambda/alpha is 3828.0319210015755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14564415011051654
the lambda is 200.0
the regulation term lambda/alpha is 1373.209976839012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 5708.869192939087
the lambda is 200.0
the regulation term lambda/alpha is 0.035033207670507924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2601468065479955
the lambda is 200.0
the regulation term lambda/alpha is 158.71166673657126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.978470993647128
the lambda is 200.0
the regulation term lambda/alpha is 33.45336963456459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 5189.817833323316
the lambda is 200.0
the regulation term lambda/alpha is 0.0385369981034439
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 46972.988731825506
the lambda is 200.0
the regulation term lambda/alpha is 0.00425776612047882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08259229018358427
the lambda is 200.0
the regulation term lambda/alpha is 2421.5335300116335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.369063108371531
the lambda is 200.0
the regulation term lambda/alpha is 37.250446858811685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06335413863379666
the lambda is 200.0
the regulation term lambda/alpha is 3156.857694112958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 472585362.3839093
the lambda is 200.0
the regulation term lambda/alpha is 4.2320396677357954e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.99156714342225
the lambda is 200.0
the regulation term lambda/alpha is 11.116319017997293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.053374209065398866
the lambda is 200.0
the regulation term lambda/alpha is 3747.1281261506297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 85.31091834652226
the lambda is 200.0
the regulation term lambda/alpha is 2.344365807757749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 42.786441347659874
the lambda is 200.0
the regulation term lambda/alpha is 4.6743779968730355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0953710242506077
the lambda is 200.0
the regulation term lambda/alpha is 2097.073000647003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.056198289819665605
the lambda is 200.0
the regulation term lambda/alpha is 3558.8271572280746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09450087745698552
the lambda is 200.0
the regulation term lambda/alpha is 2116.382465242559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.3404688266665126
the lambda is 200.0
the regulation term lambda/alpha is 85.45296468864163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06567459466899848
the lambda is 200.0
the regulation term lambda/alpha is 3045.3176149469173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13173571012850036
the lambda is 200.0
the regulation term lambda/alpha is 1518.1912315568184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 324.8060937751855
the lambda is 200.0
the regulation term lambda/alpha is 0.6157519942911847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41499150183514477
the lambda is 200.0
the regulation term lambda/alpha is 481.9375797228974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06534221461241288
the lambda is 200.0
the regulation term lambda/alpha is 3060.8084097903616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 34.31840179935594
the lambda is 200.0
the regulation term lambda/alpha is 5.827777213207914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29373010426846613
the lambda is 200.0
the regulation term lambda/alpha is 680.8971810979313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2305318718355807
the lambda is 200.0
the regulation term lambda/alpha is 867.5589991419645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11388776221975115
the lambda is 200.0
the regulation term lambda/alpha is 1756.1149337019347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06623057209974624
the lambda is 200.0
the regulation term lambda/alpha is 3019.7534712336615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05669802551374963
the lambda is 200.0
the regulation term lambda/alpha is 3527.4596987773184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.059836745758027464
the lambda is 200.0
the regulation term lambda/alpha is 3342.427758501034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16229163842546454
the lambda is 200.0
the regulation term lambda/alpha is 1232.3493800443314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19182196359631895
the lambda is 200.0
the regulation term lambda/alpha is 1042.6334724676856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7841926865316905
the lambda is 200.0
the regulation term lambda/alpha is 255.03935886542814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10126853897458343
the lambda is 200.0
the regulation term lambda/alpha is 1974.9470272321828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8631123792486823
the lambda is 200.0
the regulation term lambda/alpha is 231.71953595903116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0645413329355749
the lambda is 200.0
the regulation term lambda/alpha is 3098.789425369318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1887680575997277
the lambda is 200.0
the regulation term lambda/alpha is 1059.5012871515
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0637859264291855
the lambda is 200.0
the regulation term lambda/alpha is 3135.4878920201622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5635495207498369
the lambda is 200.0
the regulation term lambda/alpha is 354.8933902630027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9671059635516104
the lambda is 200.0
the regulation term lambda/alpha is 206.80257131857385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.122155290226052
the lambda is 200.0
the regulation term lambda/alpha is 15.241398655674242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.47314409838487415
the lambda is 200.0
the regulation term lambda/alpha is 422.7042050883029
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10649138921537782
the lambda is 200.0
the regulation term lambda/alpha is 1878.0861201416192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.060232183394103966
the lambda is 200.0
the regulation term lambda/alpha is 3320.4839793268675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1912416012032288
the lambda is 200.0
the regulation term lambda/alpha is 1045.7975604767282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2498.351841915065
the lambda is 200.0
the regulation term lambda/alpha is 0.08005277585189671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1252629046831526
the lambda is 200.0
the regulation term lambda/alpha is 1596.6418829731901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 377.83329646972766
the lambda is 200.0
the regulation term lambda/alpha is 0.5293339731270195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.062524814088722
the lambda is 200.0
the regulation term lambda/alpha is 3198.7300228706363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20874956977106668
the lambda is 200.0
the regulation term lambda/alpha is 958.0858069280706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16226214209162337
the lambda is 200.0
the regulation term lambda/alpha is 1232.5733989575183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11041974252034169
the lambda is 200.0
the regulation term lambda/alpha is 1811.2702985442636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10099683722338067
the lambda is 200.0
the regulation term lambda/alpha is 1980.2600308923356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 89.40612767025073
the lambda is 200.0
the regulation term lambda/alpha is 2.236983137639554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1882326756546847
the lambda is 200.0
the regulation term lambda/alpha is 1062.5147802016193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08295448867756804
the lambda is 200.0
the regulation term lambda/alpha is 2410.9605542548848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09932538193946741
the lambda is 200.0
the regulation term lambda/alpha is 2013.5840013370143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 191175436.0461573
the lambda is 200.0
the regulation term lambda/alpha is 1.046159507394622e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 60.28800196981468
the lambda is 200.0
the regulation term lambda/alpha is 3.317409658063259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 296.15876239221024
the lambda is 200.0
the regulation term lambda/alpha is 0.675313464928433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08825761811267141
the lambda is 200.0
the regulation term lambda/alpha is 2266.093333095349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37455080413431646
the lambda is 200.0
the regulation term lambda/alpha is 533.9729558510803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08622532328697705
the lambda is 200.0
the regulation term lambda/alpha is 2319.5042056769744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9999687797557021
the lambda is 200.0
the regulation term lambda/alpha is 200.0062442438064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.048411127176672
the lambda is 200.0
the regulation term lambda/alpha is 49.40209719744505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0642541032024655
the lambda is 200.0
the regulation term lambda/alpha is 3112.641684061755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29768082942773677
the lambda is 200.0
the regulation term lambda/alpha is 671.8605305705479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07094636869466166
the lambda is 200.0
the regulation term lambda/alpha is 2819.0308211651845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09044478175276228
the lambda is 200.0
the regulation term lambda/alpha is 2211.29396438498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.576264583354607
the lambda is 200.0
the regulation term lambda/alpha is 77.63177792071959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05922417123016081
the lambda is 200.0
the regulation term lambda/alpha is 3376.999556865845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.217531076473074
the lambda is 200.0
the regulation term lambda/alpha is 15.131418934659875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.968752868784153
the lambda is 200.0
the regulation term lambda/alpha is 101.58715355854412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09037036123096821
the lambda is 200.0
the regulation term lambda/alpha is 2213.1149779167176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5596127955777572
the lambda is 200.0
the regulation term lambda/alpha is 357.38996960124075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.0828097027272277
the lambda is 200.0
the regulation term lambda/alpha is 96.02413496447626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.2518034795715947
the lambda is 200.0
the regulation term lambda/alpha is 61.50433175203711
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.86703163299229
the lambda is 200.0
the regulation term lambda/alpha is 20.269520504146566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06814270350890336
the lambda is 200.0
the regulation term lambda/alpha is 2935.017099429706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.055721540600468696
the lambda is 200.0
the regulation term lambda/alpha is 3589.276208890709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 3022.574325348766
the lambda is 200.0
the regulation term lambda/alpha is 0.06616876161578676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18969984117263985
the lambda is 200.0
the regulation term lambda/alpha is 1054.2971399643202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 125.59795726084221
the lambda is 200.0
the regulation term lambda/alpha is 1.592382586164514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34132413893375063
the lambda is 200.0
the regulation term lambda/alpha is 585.9532836580862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1351582997000396
the lambda is 200.0
the regulation term lambda/alpha is 1479.746345166115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.444837523837449
the lambda is 200.0
the regulation term lambda/alpha is 58.05789057279131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07423774626796022
the lambda is 200.0
the regulation term lambda/alpha is 2694.04730146444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12821957595057257
the lambda is 200.0
the regulation term lambda/alpha is 1559.8242196425458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.121941993548561
the lambda is 200.0
the regulation term lambda/alpha is 28.082228159281666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09134584349101468
the lambda is 200.0
the regulation term lambda/alpha is 2189.481123130394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35258032998724437
the lambda is 200.0
the regulation term lambda/alpha is 567.2466186846997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061537447687396066
the lambda is 200.0
the regulation term lambda/alpha is 3250.0535448915516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3974047249310228
the lambda is 200.0
the regulation term lambda/alpha is 503.2652795829587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 102.48910493980263
the lambda is 200.0
the regulation term lambda/alpha is 1.9514269357457144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 26.806264366050815
the lambda is 200.0
the regulation term lambda/alpha is 7.460942609119864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2531420839884765
the lambda is 200.0
the regulation term lambda/alpha is 790.0701331395549
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11228167883877778
the lambda is 200.0
the regulation term lambda/alpha is 1781.2344994161922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 1.285950917716113
the lambda is 200.0
the regulation term lambda/alpha is 155.52693127293375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08290429264765274
the lambda is 200.0
the regulation term lambda/alpha is 2412.4203176065885
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 236.58401841476214
the lambda is 200.0
the regulation term lambda/alpha is 0.845365639404156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7422014898774856
the lambda is 200.0
the regulation term lambda/alpha is 269.46860485690183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39366046742026495
the lambda is 200.0
the regulation term lambda/alpha is 508.0520310069224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17506500199321892
the lambda is 200.0
the regulation term lambda/alpha is 1142.432797663047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0708468555278655
the lambda is 200.0
the regulation term lambda/alpha is 2822.9904984468358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 9306124.754198192
the lambda is 200.0
the regulation term lambda/alpha is 2.1491222746586944e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  24  iterations
the alpha is 390268.54552746116
the lambda is 200.0
the regulation term lambda/alpha is 0.0005124676387375601
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 970.4907384957354
the lambda is 200.0
the regulation term lambda/alpha is 0.20608130718485868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06685140556241634
the lambda is 200.0
the regulation term lambda/alpha is 2991.7097227412582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09538944708930903
the lambda is 200.0
the regulation term lambda/alpha is 2096.6679868974247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6608648781796396
the lambda is 200.0
the regulation term lambda/alpha is 120.41918799511633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15461054359705337
the lambda is 200.0
the regulation term lambda/alpha is 1293.5728401630927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 4514.088307759581
the lambda is 200.0
the regulation term lambda/alpha is 0.04430573492685246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06997694332384306
the lambda is 200.0
the regulation term lambda/alpha is 2858.0842560445835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 473587859.5086588
the lambda is 200.0
the regulation term lambda/alpha is 4.223081229478673e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07964066077507065
the lambda is 200.0
the regulation term lambda/alpha is 2511.2800176892124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09886770564146742
the lambda is 200.0
the regulation term lambda/alpha is 2022.9052419328657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12801080676057608
the lambda is 200.0
the regulation term lambda/alpha is 1562.3680926725842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2539120465090692
the lambda is 200.0
the regulation term lambda/alpha is 787.6743256167503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05960617520579971
the lambda is 200.0
the regulation term lambda/alpha is 3355.357046639354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05915044694725799
the lambda is 200.0
the regulation term lambda/alpha is 3381.2086014892116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06220361666613441
the lambda is 200.0
the regulation term lambda/alpha is 3215.2471306204006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 51730.90778362938
the lambda is 200.0
the regulation term lambda/alpha is 0.003866160648804455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13059763274009134
the lambda is 200.0
the regulation term lambda/alpha is 1531.4213267405057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1046156690879503
the lambda is 200.0
the regulation term lambda/alpha is 1911.7595073818263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2846711817639949
the lambda is 200.0
the regulation term lambda/alpha is 702.5649690308621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0740548400117583
the lambda is 200.0
the regulation term lambda/alpha is 2700.701263661421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07850185653891709
the lambda is 200.0
the regulation term lambda/alpha is 2547.7104468331972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08883329675105996
the lambda is 200.0
the regulation term lambda/alpha is 2251.4080566036587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 385.54932058263097
the lambda is 200.0
the regulation term lambda/alpha is 0.5187403772305079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06380601794603112
the lambda is 200.0
the regulation term lambda/alpha is 3134.5005759357286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16430214264386583
the lambda is 200.0
the regulation term lambda/alpha is 1217.2695789701982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 30.178760331353928
the lambda is 200.0
the regulation term lambda/alpha is 6.627177452090766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 6695.04213834288
the lambda is 200.0
the regulation term lambda/alpha is 0.029872851561992243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.9277880479059193
the lambda is 200.0
the regulation term lambda/alpha is 50.91924451132973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11852085224099582
the lambda is 200.0
the regulation term lambda/alpha is 1687.466772457285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 17618.00106544863
the lambda is 200.0
the regulation term lambda/alpha is 0.0113520256501873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1417056728163518
the lambda is 200.0
the regulation term lambda/alpha is 1411.3761010767487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15202265162138104
the lambda is 200.0
the regulation term lambda/alpha is 1315.5934189209422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.059456949413441984
the lambda is 200.0
the regulation term lambda/alpha is 3363.7783635563405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08974643309320057
the lambda is 200.0
the regulation term lambda/alpha is 2228.5008228940137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.0270948498939303
the lambda is 200.0
the regulation term lambda/alpha is 98.66336546139674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 490095133.91215926
the lambda is 200.0
the regulation term lambda/alpha is 4.0808403544738397e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09682808241024247
the lambda is 200.0
the regulation term lambda/alpha is 2065.516480566427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1286322656744783
the lambda is 200.0
the regulation term lambda/alpha is 1554.8198498355584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1278828728796143
the lambda is 200.0
the regulation term lambda/alpha is 1563.9310839401844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6989524382749668
the lambda is 200.0
the regulation term lambda/alpha is 117.71959914491204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08440952600284116
the lambda is 200.0
the regulation term lambda/alpha is 2369.400818496104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17748945329228352
the lambda is 200.0
the regulation term lambda/alpha is 1126.827517298433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24543000980573543
the lambda is 200.0
the regulation term lambda/alpha is 814.8962718874741
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10761049021357019
the lambda is 200.0
the regulation term lambda/alpha is 1858.5548639641738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.49970088883083125
the lambda is 200.0
the regulation term lambda/alpha is 400.23943216900705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999968.85950494
the lambda is 200.0
the regulation term lambda/alpha is 4.000000249123976e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 27.618087579900322
the lambda is 200.0
the regulation term lambda/alpha is 7.241631029715267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.707643158181602
the lambda is 200.0
the regulation term lambda/alpha is 42.4841036756178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 312.10489435960284
the lambda is 200.0
the regulation term lambda/alpha is 0.6408102007191301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07151170234336288
the lambda is 200.0
the regulation term lambda/alpha is 2796.74505635038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.054001341167176
the lambda is 200.0
the regulation term lambda/alpha is 49.33397479893743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05557661764502942
the lambda is 200.0
the regulation term lambda/alpha is 3598.635693834587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11896436433388075
the lambda is 200.0
the regulation term lambda/alpha is 1681.1757127427488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.8085321817982307
the lambda is 200.0
the regulation term lambda/alpha is 71.21157496295633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8061608051766552
the lambda is 200.0
the regulation term lambda/alpha is 248.08946145201602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999958.5228334
the lambda is 200.0
the regulation term lambda/alpha is 4.0000003318173605e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 2956.9406352097344
the lambda is 200.0
the regulation term lambda/alpha is 0.06763747557813723
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12281313400655706
the lambda is 200.0
the regulation term lambda/alpha is 1628.490320826125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09449768713281059
the lambda is 200.0
the regulation term lambda/alpha is 2116.4539161568314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 246.45918884209271
the lambda is 200.0
the regulation term lambda/alpha is 0.8114933792472259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09002334695835267
the lambda is 200.0
the regulation term lambda/alpha is 2221.6459036179317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6056546782287667
the lambda is 200.0
the regulation term lambda/alpha is 330.2211758437972
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.793894216690921
the lambda is 200.0
the regulation term lambda/alpha is 111.48929415075928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10396250403376249
the lambda is 200.0
the regulation term lambda/alpha is 1923.7705157144803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10241422174782268
the lambda is 200.0
the regulation term lambda/alpha is 1952.8537793556195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22118471685048594
the lambda is 200.0
the regulation term lambda/alpha is 904.2216064828468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  22  iterations
the alpha is 492703.64047366707
the lambda is 200.0
the regulation term lambda/alpha is 0.0004059235280009853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.5720420903886758
the lambda is 200.0
the regulation term lambda/alpha is 349.62462266388366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 423.7494991844448
the lambda is 200.0
the regulation term lambda/alpha is 0.47197695899328085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13051046402708366
the lambda is 200.0
the regulation term lambda/alpha is 1532.4441721278058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 10037.982552994119
the lambda is 200.0
the regulation term lambda/alpha is 0.019924322337095936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13945146392974342
the lambda is 200.0
the regulation term lambda/alpha is 1434.1907525672254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06454564146941875
the lambda is 200.0
the regulation term lambda/alpha is 3098.5825757848966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.055115101404395024
the lambda is 200.0
the regulation term lambda/alpha is 3628.76951876662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1561109305606888
the lambda is 200.0
the regulation term lambda/alpha is 1281.1402717393266
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 101611.77441389683
the lambda is 200.0
the regulation term lambda/alpha is 0.0019682758337172313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13689412029397652
the lambda is 200.0
the regulation term lambda/alpha is 1460.9831274747612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3505071322908379
the lambda is 200.0
the regulation term lambda/alpha is 570.6017982939285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2810932363782154
the lambda is 200.0
the regulation term lambda/alpha is 711.5076925255391
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07809124684021226
the lambda is 200.0
the regulation term lambda/alpha is 2561.1065015933655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.213702115899153
the lambda is 200.0
the regulation term lambda/alpha is 21.706801184171155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06699143414296882
the lambda is 200.0
the regulation term lambda/alpha is 2985.4563133127263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.0221864746822584
the lambda is 200.0
the regulation term lambda/alpha is 66.1772533480176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3788920923668168
the lambda is 200.0
the regulation term lambda/alpha is 527.8547745630278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.056248492770154
the lambda is 200.0
the regulation term lambda/alpha is 49.30664389927773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.85964292327917
the lambda is 200.0
the regulation term lambda/alpha is 51.81826505081955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06991435107304382
the lambda is 200.0
the regulation term lambda/alpha is 2860.643014351198
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09903755717406094
the lambda is 200.0
the regulation term lambda/alpha is 2019.4359160989309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10926273398321186
the lambda is 200.0
the regulation term lambda/alpha is 1830.4502615752765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06873161106275226
the lambda is 200.0
the regulation term lambda/alpha is 2909.8692276745724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4219369327021841
the lambda is 200.0
the regulation term lambda/alpha is 474.0044885835251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07808289167193727
the lambda is 200.0
the regulation term lambda/alpha is 2561.380549791797
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 422436688.5006188
the lambda is 200.0
the regulation term lambda/alpha is 4.7344372646673426e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7261779170402489
the lambda is 200.0
the regulation term lambda/alpha is 275.414599241958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07216537631791047
the lambda is 200.0
the regulation term lambda/alpha is 2771.412139790404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.908977443296699
the lambda is 200.0
the regulation term lambda/alpha is 18.333524020887506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06386868287763028
the lambda is 200.0
the regulation term lambda/alpha is 3131.4251521859564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0972763099621345
the lambda is 200.0
the regulation term lambda/alpha is 2055.9990410599603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06494604237792179
the lambda is 200.0
the regulation term lambda/alpha is 3079.479405938204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15421262973167563
the lambda is 200.0
the regulation term lambda/alpha is 1296.9106379159264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09051619791114118
the lambda is 200.0
the regulation term lambda/alpha is 2209.5492808517865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09576610614875447
the lambda is 200.0
the regulation term lambda/alpha is 2088.421551663988
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5834239551304771
the lambda is 200.0
the regulation term lambda/alpha is 342.8038877067911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06546736409580627
the lambda is 200.0
the regulation term lambda/alpha is 3054.9572716463113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 498947004.9200457
the lambda is 200.0
the regulation term lambda/alpha is 4.0084417388586033e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09599257904870495
the lambda is 200.0
the regulation term lambda/alpha is 2083.4943907333036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.142653150589405
the lambda is 200.0
the regulation term lambda/alpha is 48.27823926595075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1026337956183574
the lambda is 200.0
the regulation term lambda/alpha is 1948.675860568362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0892139552203169
the lambda is 200.0
the regulation term lambda/alpha is 2241.8017394934814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05214562698986798
the lambda is 200.0
the regulation term lambda/alpha is 3835.4126998772203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 8922660.658730946
the lambda is 200.0
the regulation term lambda/alpha is 2.2414838762729057e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07574388905463987
the lambda is 200.0
the regulation term lambda/alpha is 2640.4770404081664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07192849365274105
the lambda is 200.0
the regulation term lambda/alpha is 2780.539252852522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17446569015598667
the lambda is 200.0
the regulation term lambda/alpha is 1146.357199637267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23534189123485175
the lambda is 200.0
the regulation term lambda/alpha is 849.827452947663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6471046031355085
the lambda is 200.0
the regulation term lambda/alpha is 309.0690423633387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14047793302689862
the lambda is 200.0
the regulation term lambda/alpha is 1423.7111529944289
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499975930.47100747
the lambda is 200.0
the regulation term lambda/alpha is 4.0001925655018623e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15427008996953026
the lambda is 200.0
the regulation term lambda/alpha is 1296.4275838531098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 100990575.76839891
the lambda is 200.0
the regulation term lambda/alpha is 1.9803828077845483e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05893335368575658
the lambda is 200.0
the regulation term lambda/alpha is 3393.663986380897
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5522816366715837
the lambda is 200.0
the regulation term lambda/alpha is 128.8425987109155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11248964052613511
the lambda is 200.0
the regulation term lambda/alpha is 1777.9414981198495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0698630963346052
the lambda is 200.0
the regulation term lambda/alpha is 2862.7417119062648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06212189601326041
the lambda is 200.0
the regulation term lambda/alpha is 3219.4767519218735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.550252264072799
the lambda is 200.0
the regulation term lambda/alpha is 36.03439816503749
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 74139928.76045224
the lambda is 200.0
the regulation term lambda/alpha is 2.697601728836353e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.565723950801361
the lambda is 200.0
the regulation term lambda/alpha is 43.80466321554474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.733920469761009
the lambda is 200.0
the regulation term lambda/alpha is 42.248280527217425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.180800751917066
the lambda is 200.0
the regulation term lambda/alpha is 32.35826683750759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 25.566618708268305
the lambda is 200.0
the regulation term lambda/alpha is 7.822700462745178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07537919893122945
the lambda is 200.0
the regulation term lambda/alpha is 2653.2518630566183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06606704334909289
the lambda is 200.0
the regulation term lambda/alpha is 3027.227946969206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07471899688268635
the lambda is 200.0
the regulation term lambda/alpha is 2676.6954635915804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.24788524015908828
the lambda is 200.0
the regulation term lambda/alpha is 806.8249641311585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.9096203000507894
the lambda is 200.0
the regulation term lambda/alpha is 68.73749127901976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.754165242081755
the lambda is 200.0
the regulation term lambda/alpha is 265.19387110433695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3630359176111646
the lambda is 200.0
the regulation term lambda/alpha is 550.9096766954425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06377498856088894
the lambda is 200.0
the regulation term lambda/alpha is 3136.0256506992664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2813389674660102
the lambda is 200.0
the regulation term lambda/alpha is 710.8862373434382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.062280797610251556
the lambda is 200.0
the regulation term lambda/alpha is 3211.2626631981275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 402292914.2159977
the lambda is 200.0
the regulation term lambda/alpha is 4.971501931366773e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10681117464560785
the lambda is 200.0
the regulation term lambda/alpha is 1872.4632573659665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.33830041047165
the lambda is 200.0
the regulation term lambda/alpha is 19.34553960121146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.32383287
the lambda is 200.0
the regulation term lambda/alpha is 3.999999997409337e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 41725.01865086267
the lambda is 200.0
the regulation term lambda/alpha is 0.004793287252272204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8209768825516216
the lambda is 200.0
the regulation term lambda/alpha is 243.61221887076016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2194142795062329
the lambda is 200.0
the regulation term lambda/alpha is 911.5177027223453
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.24567247363747632
the lambda is 200.0
the regulation term lambda/alpha is 814.0920186895974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 296795.1731687179
the lambda is 200.0
the regulation term lambda/alpha is 0.0006738654064508888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15124066520741244
the lambda is 200.0
the regulation term lambda/alpha is 1322.3956647223065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 46352256.86625039
the lambda is 200.0
the regulation term lambda/alpha is 4.314784511509348e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10515612731792408
the lambda is 200.0
the regulation term lambda/alpha is 1901.9338682502964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 408.63563691683504
the lambda is 200.0
the regulation term lambda/alpha is 0.489433573412746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.147777352905827
the lambda is 200.0
the regulation term lambda/alpha is 24.54657157864923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18219956802994233
the lambda is 200.0
the regulation term lambda/alpha is 1097.6974433173868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20104462506736903
the lambda is 200.0
the regulation term lambda/alpha is 994.8040139495449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10602923260202912
the lambda is 200.0
the regulation term lambda/alpha is 1886.272258054356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4969569511769981
the lambda is 200.0
the regulation term lambda/alpha is 402.44934601743245
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20361627697097961
the lambda is 200.0
the regulation term lambda/alpha is 982.2397451481984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07972268182059997
the lambda is 200.0
the regulation term lambda/alpha is 2508.6963387666788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07857716879034295
the lambda is 200.0
the regulation term lambda/alpha is 2545.2685949227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.729735021934214
the lambda is 200.0
the regulation term lambda/alpha is 274.07208642650306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5078232717037047
the lambda is 200.0
the regulation term lambda/alpha is 393.83779977041365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 962.9123423153906
the lambda is 200.0
the regulation term lambda/alpha is 0.2077032261514957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  29  iterations
the alpha is 609841.3398363689
the lambda is 200.0
the regulation term lambda/alpha is 0.00032795415288452485
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.058085858615955485
the lambda is 200.0
the regulation term lambda/alpha is 3443.1788522286283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6502895031226982
the lambda is 200.0
the regulation term lambda/alpha is 307.5553258042726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.051655862509118196
the lambda is 200.0
the regulation term lambda/alpha is 3871.7773798607345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33955946683981225
the lambda is 200.0
the regulation term lambda/alpha is 588.998451026401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.21530649793841336
the lambda is 200.0
the regulation term lambda/alpha is 928.9083326096751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06682231231011913
the lambda is 200.0
the regulation term lambda/alpha is 2993.0122602134693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11544153646267773
the lambda is 200.0
the regulation term lambda/alpha is 1732.4786738667501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.8405237562926153
the lambda is 200.0
the regulation term lambda/alpha is 70.40955019543131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07345779688919384
the lambda is 200.0
the regulation term lambda/alpha is 2722.6517601894134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.40599646925050503
the lambda is 200.0
the regulation term lambda/alpha is 492.6151214300276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7893541524421342
the lambda is 200.0
the regulation term lambda/alpha is 253.37169555798536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09190694767941217
the lambda is 200.0
the regulation term lambda/alpha is 2176.1140485008345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 283637927.89229417
the lambda is 200.0
the regulation term lambda/alpha is 7.051243163641571e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07760549622974243
the lambda is 200.0
the regulation term lambda/alpha is 2577.1370549312933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14968103885217696
the lambda is 200.0
the regulation term lambda/alpha is 1336.1745851959072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0901604994236154
the lambda is 200.0
the regulation term lambda/alpha is 2218.266328143417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20440941794757062
the lambda is 200.0
the regulation term lambda/alpha is 978.4284990787381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2656770243033861
the lambda is 200.0
the regulation term lambda/alpha is 158.0181959217263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 408983995.05577254
the lambda is 200.0
the regulation term lambda/alpha is 4.890166911610473e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3249856277888284
the lambda is 200.0
the regulation term lambda/alpha is 615.4118302424054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06356785335561024
the lambda is 200.0
the regulation term lambda/alpha is 3146.244358467845
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.23683415128632893
the lambda is 200.0
the regulation term lambda/alpha is 844.4728047611808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15533529292678885
the lambda is 200.0
the regulation term lambda/alpha is 1287.537405258328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 443.2875628272825
the lambda is 200.0
the regulation term lambda/alpha is 0.4511743995802691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3193133521178534
the lambda is 200.0
the regulation term lambda/alpha is 626.3439930510117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08221624295346218
the lambda is 200.0
the regulation term lambda/alpha is 2432.609333817508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08176947872786074
the lambda is 200.0
the regulation term lambda/alpha is 2445.9003910936685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5250376927101194
the lambda is 200.0
the regulation term lambda/alpha is 380.92503219654134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26377985444786384
the lambda is 200.0
the regulation term lambda/alpha is 758.2080156145133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16464797810458023
the lambda is 200.0
the regulation term lambda/alpha is 1214.7127605354804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19501701700224863
the lambda is 200.0
the regulation term lambda/alpha is 1025.5515291657543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06615845678068687
the lambda is 200.0
the regulation term lambda/alpha is 3023.045121245701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5132244786085457
the lambda is 200.0
the regulation term lambda/alpha is 389.6930258319713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11175474960527419
the lambda is 200.0
the regulation term lambda/alpha is 1789.6331091646161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7652029643840029
the lambda is 200.0
the regulation term lambda/alpha is 261.3685640397411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12128989947159187
the lambda is 200.0
the regulation term lambda/alpha is 1648.9419223802997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0749676085284834
the lambda is 200.0
the regulation term lambda/alpha is 2667.8188610486545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 12.890304498292236
the lambda is 200.0
the regulation term lambda/alpha is 15.515537280480602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1029407.4283938764
the lambda is 200.0
the regulation term lambda/alpha is 0.00019428653270168078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07313854424074594
the lambda is 200.0
the regulation term lambda/alpha is 2734.5362431835056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0777723553647256
the lambda is 200.0
the regulation term lambda/alpha is 2571.60785554287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 58.90509437081644
the lambda is 200.0
the regulation term lambda/alpha is 3.3952920733980982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07672153990988703
the lambda is 200.0
the regulation term lambda/alpha is 2606.829845111414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06524158199017419
the lambda is 200.0
the regulation term lambda/alpha is 3065.5295886313934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.99031526
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992077478e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 31396.832556264555
the lambda is 200.0
the regulation term lambda/alpha is 0.006370069325993024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.77348115640543
the lambda is 200.0
the regulation term lambda/alpha is 258.5712636225716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 60523.16172856216
the lambda is 200.0
the regulation term lambda/alpha is 0.003304520026514341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.48771622357431405
the lambda is 200.0
the regulation term lambda/alpha is 410.0745276305653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061385229336660664
the lambda is 200.0
the regulation term lambda/alpha is 3258.112776660352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499997207.4668686
the lambda is 200.0
the regulation term lambda/alpha is 4.000022340389824e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.886413239441584
the lambda is 200.0
the regulation term lambda/alpha is 225.6283989237283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06705522421865306
the lambda is 200.0
the regulation term lambda/alpha is 2982.616229092633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2449997386820622
the lambda is 200.0
the regulation term lambda/alpha is 816.3274013101758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06489313855169644
the lambda is 200.0
the regulation term lambda/alpha is 3081.9899370512353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06959369823954958
the lambda is 200.0
the regulation term lambda/alpha is 2873.8234216491383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10654000368626218
the lambda is 200.0
the regulation term lambda/alpha is 1877.2291447347588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37951657611956663
the lambda is 200.0
the regulation term lambda/alpha is 526.9862045155836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11284371641598137
the lambda is 200.0
the regulation term lambda/alpha is 1772.362754012196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13815810989184713
the lambda is 200.0
the regulation term lambda/alpha is 1447.61679322744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 92.10135570650873
the lambda is 200.0
the regulation term lambda/alpha is 2.1715206954968433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056887326146293514
the lambda is 200.0
the regulation term lambda/alpha is 3515.7215771694514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10749253847139523
the lambda is 200.0
the regulation term lambda/alpha is 1860.5942593236077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12509138062490538
the lambda is 200.0
the regulation term lambda/alpha is 1598.831182459429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.005479507688257
the lambda is 200.0
the regulation term lambda/alpha is 16.659059712852024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 8811.789619086732
the lambda is 200.0
the regulation term lambda/alpha is 0.022696865068906207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1650339692523101
the lambda is 200.0
the regulation term lambda/alpha is 1211.8717189321947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.04993543056262633
the lambda is 200.0
the regulation term lambda/alpha is 4005.172234355139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32756654596256246
the lambda is 200.0
the regulation term lambda/alpha is 610.5629603056534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.04315257927203
the lambda is 200.0
the regulation term lambda/alpha is 14.241816349357618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06162059914605615
the lambda is 200.0
the regulation term lambda/alpha is 3245.6678898228533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24131151614673918
the lambda is 200.0
the regulation term lambda/alpha is 828.8042079118261
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.659146760758348
the lambda is 200.0
the regulation term lambda/alpha is 35.34101666824404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07434764634970116
the lambda is 200.0
the regulation term lambda/alpha is 2690.064982814401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 11.407117481192232
the lambda is 200.0
the regulation term lambda/alpha is 17.532913142146118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11140373519082344
the lambda is 200.0
the regulation term lambda/alpha is 1795.2719418017718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07945303678910688
the lambda is 200.0
the regulation term lambda/alpha is 2517.210267630957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 19032754.32455659
the lambda is 200.0
the regulation term lambda/alpha is 1.0508200578302765e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11960568790752328
the lambda is 200.0
the regulation term lambda/alpha is 1672.1612784388312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06018977316440933
the lambda is 200.0
the regulation term lambda/alpha is 3322.8236207785135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06370739510917119
the lambda is 200.0
the regulation term lambda/alpha is 3139.3529692631932
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3874669859150163
the lambda is 200.0
the regulation term lambda/alpha is 516.1730089795735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06112777596570041
the lambda is 200.0
the regulation term lambda/alpha is 3271.8350510940004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.803895287272062
the lambda is 200.0
the regulation term lambda/alpha is 34.45961549971445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06715234232283741
the lambda is 200.0
the regulation term lambda/alpha is 2978.3026634944836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1648246827687174
the lambda is 200.0
the regulation term lambda/alpha is 1213.4104955666182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1057485433137356
the lambda is 200.0
the regulation term lambda/alpha is 1891.279007093634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07756930763829005
the lambda is 200.0
the regulation term lambda/alpha is 2578.3393727401954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21207281870909125
the lambda is 200.0
the regulation term lambda/alpha is 943.072295720971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07324142541787014
the lambda is 200.0
the regulation term lambda/alpha is 2730.695079443417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07428279007129787
the lambda is 200.0
the regulation term lambda/alpha is 2692.4136776235337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08438985426631916
the lambda is 200.0
the regulation term lambda/alpha is 2369.953138784149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1682.2949393531642
the lambda is 200.0
the regulation term lambda/alpha is 0.11888521764019526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06138255201423672
the lambda is 200.0
the regulation term lambda/alpha is 3258.2548857468996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14636278696704014
the lambda is 200.0
the regulation term lambda/alpha is 1366.4675573924305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0657938478335992
the lambda is 200.0
the regulation term lambda/alpha is 3039.7978927425675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 243637228.39202994
the lambda is 200.0
the regulation term lambda/alpha is 8.208926087362377e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 108673.68809111824
the lambda is 200.0
the regulation term lambda/alpha is 0.0018403718831398136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07424389240634434
the lambda is 200.0
the regulation term lambda/alpha is 2693.8242799202894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14356965515294018
the lambda is 200.0
the regulation term lambda/alpha is 1393.0520330841944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19984879396416488
the lambda is 200.0
the regulation term lambda/alpha is 1000.7566021932673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06983072730908046
the lambda is 200.0
the regulation term lambda/alpha is 2864.068694498517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13156935003995132
the lambda is 200.0
the regulation term lambda/alpha is 1520.1108764257751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5770453536834778
the lambda is 200.0
the regulation term lambda/alpha is 346.59320748937955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39007148521859564
the lambda is 200.0
the regulation term lambda/alpha is 512.7265323891087
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05980007736609179
the lambda is 200.0
the regulation term lambda/alpha is 3344.47727844254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 7011.426634990045
the lambda is 200.0
the regulation term lambda/alpha is 0.028524865253800658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09366607970682675
the lambda is 200.0
the regulation term lambda/alpha is 2135.2446971838326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06380624568418082
the lambda is 200.0
the regulation term lambda/alpha is 3134.489388232178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2544398840176796
the lambda is 200.0
the regulation term lambda/alpha is 786.0402891321203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06102038708960888
the lambda is 200.0
the regulation term lambda/alpha is 3277.5931051748094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07230677024925791
the lambda is 200.0
the regulation term lambda/alpha is 2765.992718393512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.053837342530777
the lambda is 200.0
the regulation term lambda/alpha is 3714.893614699996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15306932329572726
the lambda is 200.0
the regulation term lambda/alpha is 1306.5975317183802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.523957702193617
the lambda is 200.0
the regulation term lambda/alpha is 381.71020134387567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 37760.50752780482
the lambda is 200.0
the regulation term lambda/alpha is 0.005296538979321999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 4029721.541821307
the lambda is 200.0
the regulation term lambda/alpha is 4.963122089810858e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3778061837342887
the lambda is 200.0
the regulation term lambda/alpha is 529.3719600435659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08119648709145232
the lambda is 200.0
the regulation term lambda/alpha is 2463.160749488315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2892314.153234625
the lambda is 200.0
the regulation term lambda/alpha is 6.914878170351227e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18600494963687136
the lambda is 200.0
the regulation term lambda/alpha is 1075.2402040400027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07669442059441874
the lambda is 200.0
the regulation term lambda/alpha is 2607.7516258667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.40046573084815895
the lambda is 200.0
the regulation term lambda/alpha is 499.41851348032634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  22  iterations
the alpha is 2153439.08698375
the lambda is 200.0
the regulation term lambda/alpha is 9.287469574081768e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.081210113411939
the lambda is 200.0
the regulation term lambda/alpha is 2462.747453454452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9998752
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920009987e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6373568344782274
the lambda is 200.0
the regulation term lambda/alpha is 313.7959604116117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2503864979050062
the lambda is 200.0
the regulation term lambda/alpha is 798.765115824567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 3200.861345106627
the lambda is 200.0
the regulation term lambda/alpha is 0.06248318138045983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10022517077089874
the lambda is 200.0
the regulation term lambda/alpha is 1995.5067021753757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.42711357011726864
the lambda is 200.0
the regulation term lambda/alpha is 468.2595309371412
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07359895501953205
the lambda is 200.0
the regulation term lambda/alpha is 2717.4298867004704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9205917083255768
the lambda is 200.0
the regulation term lambda/alpha is 104.13457432572451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 15.475655805110684
the lambda is 200.0
the regulation term lambda/alpha is 12.923523404672258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07385365884304422
the lambda is 200.0
the regulation term lambda/alpha is 2708.0581129371717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17413697466860922
the lambda is 200.0
the regulation term lambda/alpha is 1148.5211591657046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08232213125274242
the lambda is 200.0
the regulation term lambda/alpha is 2429.480346979444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07520491057034498
the lambda is 200.0
the regulation term lambda/alpha is 2659.400808846445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06340449973979301
the lambda is 200.0
the regulation term lambda/alpha is 3154.3502562244635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15059236805113643
the lambda is 200.0
the regulation term lambda/alpha is 1328.0885518188165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09390883752709525
the lambda is 200.0
the regulation term lambda/alpha is 2129.7250106231436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0623445928789514
the lambda is 200.0
the regulation term lambda/alpha is 3207.976678720496
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08198619377094576
the lambda is 200.0
the regulation term lambda/alpha is 2439.4351146336044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1163151.0879019408
the lambda is 200.0
the regulation term lambda/alpha is 0.00017194670759475828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 22.12125624235236
the lambda is 200.0
the regulation term lambda/alpha is 9.041077857824774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 150.2001793954613
the lambda is 200.0
the regulation term lambda/alpha is 1.3315563323890645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08182516621988008
the lambda is 200.0
the regulation term lambda/alpha is 2444.2357924768676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.40685569722792636
the lambda is 200.0
the regulation term lambda/alpha is 491.5747803525463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4984076478505859
the lambda is 200.0
the regulation term lambda/alpha is 401.27795161754136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0662466799859854
the lambda is 200.0
the regulation term lambda/alpha is 3019.019217903605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.02899298700365
the lambda is 200.0
the regulation term lambda/alpha is 98.57106519394796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 2874.0458738651546
the lambda is 200.0
the regulation term lambda/alpha is 0.06958831166150818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30123826900828143
the lambda is 200.0
the regulation term lambda/alpha is 663.9262689246888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0978084941040204
the lambda is 200.0
the regulation term lambda/alpha is 2044.8121794749015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0965550297223049
the lambda is 200.0
the regulation term lambda/alpha is 2071.357655579475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07565450880546071
the lambda is 200.0
the regulation term lambda/alpha is 2643.5965702227136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1864443359479642
the lambda is 200.0
the regulation term lambda/alpha is 1072.7062261404344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11591627804814159
the lambda is 200.0
the regulation term lambda/alpha is 1725.38321077681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07704383861364705
the lambda is 200.0
the regulation term lambda/alpha is 2595.924652754429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 919.7320393568924
the lambda is 200.0
the regulation term lambda/alpha is 0.21745464052752445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7669495856991192
the lambda is 200.0
the regulation term lambda/alpha is 260.77333338369084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23185772070252883
the lambda is 200.0
the regulation term lambda/alpha is 862.5979734209413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 50.841281849179936
the lambda is 200.0
the regulation term lambda/alpha is 3.9338111220975436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6306575957779185
the lambda is 200.0
the regulation term lambda/alpha is 317.1292970051352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19415318373188759
the lambda is 200.0
the regulation term lambda/alpha is 1030.1144496099867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 27445400.169360682
the lambda is 200.0
the regulation term lambda/alpha is 7.287195623522907e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1783.9483288845997
the lambda is 200.0
the regulation term lambda/alpha is 0.11211087045612386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09214355735922042
the lambda is 200.0
the regulation term lambda/alpha is 2170.52614129388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1997008031976742
the lambda is 200.0
the regulation term lambda/alpha is 1001.4982253327727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 154.58228110413327
the lambda is 200.0
the regulation term lambda/alpha is 1.2938093458801492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07801473862850339
the lambda is 200.0
the regulation term lambda/alpha is 2563.6181510826495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10263379852978123
the lambda is 200.0
the regulation term lambda/alpha is 1948.6758052900677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.22066551677325763
the lambda is 200.0
the regulation term lambda/alpha is 906.3491338590422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 34244.84443084874
the lambda is 200.0
the regulation term lambda/alpha is 0.00584029518381559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 236766971.6030319
the lambda is 200.0
the regulation term lambda/alpha is 8.447124134160227e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 15.424640832977683
the lambda is 200.0
the regulation term lambda/alpha is 12.966266259659193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.769112018972813
the lambda is 200.0
the regulation term lambda/alpha is 41.936528058964875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06579225928996914
the lambda is 200.0
the regulation term lambda/alpha is 3039.87128817892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07274567445252475
the lambda is 200.0
the regulation term lambda/alpha is 2749.3043607771333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.48867173534499014
the lambda is 200.0
the regulation term lambda/alpha is 409.2726988983821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999939.9081526
the lambda is 200.0
the regulation term lambda/alpha is 4.000000480734837e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09826250641468164
the lambda is 200.0
the regulation term lambda/alpha is 2035.3643245773906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 239210.9776413016
the lambda is 200.0
the regulation term lambda/alpha is 0.0008360820309003598
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.241297761646547
the lambda is 200.0
the regulation term lambda/alpha is 828.8514515644783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06559777097693105
the lambda is 200.0
the regulation term lambda/alpha is 3048.8840858683225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.437119578837252
the lambda is 200.0
the regulation term lambda/alpha is 45.07428669578701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1019263343916402
the lambda is 200.0
the regulation term lambda/alpha is 1962.2014388501702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5068345006127575
the lambda is 200.0
the regulation term lambda/alpha is 132.72857763654176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 450996773.77645814
the lambda is 200.0
the regulation term lambda/alpha is 4.4346215234597744e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09326218970688907
the lambda is 200.0
the regulation term lambda/alpha is 2144.4917884576157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0776050549870699
the lambda is 200.0
the regulation term lambda/alpha is 2577.151707879375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 167.69027809915207
the lambda is 200.0
the regulation term lambda/alpha is 1.1926749854976315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19389434109061596
the lambda is 200.0
the regulation term lambda/alpha is 1031.4896189081176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.4829049976038045
the lambda is 200.0
the regulation term lambda/alpha is 57.423329128298796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 24.005867919924228
the lambda is 200.0
the regulation term lambda/alpha is 8.331296359170807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10680301793983034
the lambda is 200.0
the regulation term lambda/alpha is 1872.6062601777235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499904218.7891907
the lambda is 200.0
the regulation term lambda/alpha is 4.0007663964992436e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09371695165053824
the lambda is 200.0
the regulation term lambda/alpha is 2134.0856320826706
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 838262.3139032174
the lambda is 200.0
the regulation term lambda/alpha is 0.00023858880052562073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 390327846.221014
the lambda is 200.0
the regulation term lambda/alpha is 5.123897819136242e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3129416576471464
the lambda is 200.0
the regulation term lambda/alpha is 639.0967616893869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 12624.557871206292
the lambda is 200.0
the regulation term lambda/alpha is 0.015842138951745306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6713344755465155
the lambda is 200.0
the regulation term lambda/alpha is 297.91409094130813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059528612395597195
the lambda is 200.0
the regulation term lambda/alpha is 3359.728909367157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0654154377267667
the lambda is 200.0
the regulation term lambda/alpha is 3057.3822777947107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9008096874680813
the lambda is 200.0
the regulation term lambda/alpha is 105.21831897142961
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06289327648235438
the lambda is 200.0
the regulation term lambda/alpha is 3179.9901545296802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0769763709253773
the lambda is 200.0
the regulation term lambda/alpha is 2598.1999098643487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0889693343993279
the lambda is 200.0
the regulation term lambda/alpha is 2247.965564205804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6616720908995585
the lambda is 200.0
the regulation term lambda/alpha is 302.2645246047712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06229795201201605
the lambda is 200.0
the regulation term lambda/alpha is 3210.3784079679526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1924693793015575
the lambda is 200.0
the regulation term lambda/alpha is 1039.1263312936842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06139412872940935
the lambda is 200.0
the regulation term lambda/alpha is 3257.6404965609504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0926539021982297
the lambda is 200.0
the regulation term lambda/alpha is 2158.5707159112108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4408486880419215
the lambda is 200.0
the regulation term lambda/alpha is 453.6703985404204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 47042288.73695988
the lambda is 200.0
the regulation term lambda/alpha is 4.251493823319555e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3299848433389034
the lambda is 200.0
the regulation term lambda/alpha is 606.0884432640277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2546016708413146
the lambda is 200.0
the regulation term lambda/alpha is 785.5407992379354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0938760586330809
the lambda is 200.0
the regulation term lambda/alpha is 2130.468651029648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.062059169861999004
the lambda is 200.0
the regulation term lambda/alpha is 3222.7308300246373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 68.05156507453236
the lambda is 200.0
the regulation term lambda/alpha is 2.9389478372900504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.093874575581317
the lambda is 200.0
the regulation term lambda/alpha is 21.992825867319066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 922.8821338437001
the lambda is 200.0
the regulation term lambda/alpha is 0.21671239767858821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.23193291371121655
the lambda is 200.0
the regulation term lambda/alpha is 862.3183178262627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.543897425798105
the lambda is 200.0
the regulation term lambda/alpha is 36.07570354193698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.748564321785317
the lambda is 200.0
the regulation term lambda/alpha is 267.17810905414564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056130909892756486
the lambda is 200.0
the regulation term lambda/alpha is 3563.0991976100026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 156255806.23788276
the lambda is 200.0
the regulation term lambda/alpha is 1.2799524370666994e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3326006727677747
the lambda is 200.0
the regulation term lambda/alpha is 601.3216940773963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.1041714467851547
the lambda is 200.0
the regulation term lambda/alpha is 95.04928902327268
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29005509449230615
the lambda is 200.0
the regulation term lambda/alpha is 689.5241759158451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1782.0868658731727
the lambda is 200.0
the regulation term lambda/alpha is 0.11222797487035269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.840941623695377
the lambda is 200.0
the regulation term lambda/alpha is 34.24105441982938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 33658898.05245736
the lambda is 200.0
the regulation term lambda/alpha is 5.9419651733191084e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06914686096142189
the lambda is 200.0
the regulation term lambda/alpha is 2892.3944951251383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.4961048724181696
the lambda is 200.0
the regulation term lambda/alpha is 57.20652191467727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.190603253799862
the lambda is 200.0
the regulation term lambda/alpha is 1049.3000303657186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05524178274944954
the lambda is 200.0
the regulation term lambda/alpha is 3620.4479661184164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 2791594.080980236
the lambda is 200.0
the regulation term lambda/alpha is 7.164365384016443e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06314229384041749
the lambda is 200.0
the regulation term lambda/alpha is 3167.4490715441775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07581057022677161
the lambda is 200.0
the regulation term lambda/alpha is 2638.1545396867673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35767980910408353
the lambda is 200.0
the regulation term lambda/alpha is 559.1593232532751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06810803313098682
the lambda is 200.0
the regulation term lambda/alpha is 2936.5111691796437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 787018.609210438
the lambda is 200.0
the regulation term lambda/alpha is 0.00025412359715438793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1678101771766601
the lambda is 200.0
the regulation term lambda/alpha is 1191.822828417924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 374.6523590447985
the lambda is 200.0
the regulation term lambda/alpha is 0.5338282148013521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05865038646283518
the lambda is 200.0
the regulation term lambda/alpha is 3410.0372062634815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06577985686092311
the lambda is 200.0
the regulation term lambda/alpha is 3040.4444391366733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.314375774562436
the lambda is 200.0
the regulation term lambda/alpha is 86.41639019826532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16147153738274903
the lambda is 200.0
the regulation term lambda/alpha is 1238.6083841260756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07520193907641348
the lambda is 200.0
the regulation term lambda/alpha is 2659.505891154986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.280885936327351
the lambda is 200.0
the regulation term lambda/alpha is 31.842641631691027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 459.47506010311247
the lambda is 200.0
the regulation term lambda/alpha is 0.4352793380235203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4200271265537545
the lambda is 200.0
the regulation term lambda/alpha is 140.84237988141635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.144444243907724
the lambda is 200.0
the regulation term lambda/alpha is 24.556617248574778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 193850772.95257214
the lambda is 200.0
the regulation term lambda/alpha is 1.0317214471408497e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 748.8012763671846
the lambda is 200.0
the regulation term lambda/alpha is 0.26709356181963473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2194467243283849
the lambda is 200.0
the regulation term lambda/alpha is 911.3829363919582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08216718340646964
the lambda is 200.0
the regulation term lambda/alpha is 2434.061771481539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 34.4574705284809
the lambda is 200.0
the regulation term lambda/alpha is 5.804256578691392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0896320963146317
the lambda is 200.0
the regulation term lambda/alpha is 2231.343550171454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06121355935667522
the lambda is 200.0
the regulation term lambda/alpha is 3267.249970462474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06648490212721847
the lambda is 200.0
the regulation term lambda/alpha is 3008.2017661288146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 6331.447208053205
the lambda is 200.0
the regulation term lambda/alpha is 0.03158835467278516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4289532349314913
the lambda is 200.0
the regulation term lambda/alpha is 466.25129201308454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10621581477108827
the lambda is 200.0
the regulation term lambda/alpha is 1882.9587706033358
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10616134212599186
the lambda is 200.0
the regulation term lambda/alpha is 1883.9249391048654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1084617039152453
the lambda is 200.0
the regulation term lambda/alpha is 1843.9688183055378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24868722578176194
the lambda is 200.0
the regulation term lambda/alpha is 804.2230531596025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 234928886.95691493
the lambda is 200.0
the regulation term lambda/alpha is 8.513214470584848e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5320614773940245
the lambda is 200.0
the regulation term lambda/alpha is 375.89641140639765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09819867530487406
the lambda is 200.0
the regulation term lambda/alpha is 2036.6873522383767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08193580057807662
the lambda is 200.0
the regulation term lambda/alpha is 2440.9354468858824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5094541540008943
the lambda is 200.0
the regulation term lambda/alpha is 132.49822756781887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7833345331771525
the lambda is 200.0
the regulation term lambda/alpha is 255.31875786046783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10762259345679641
the lambda is 200.0
the regulation term lambda/alpha is 1858.3458507742355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0069446124654893
the lambda is 200.0
the regulation term lambda/alpha is 198.62065651287702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 11402.01414178958
the lambda is 200.0
the regulation term lambda/alpha is 0.017540760563256888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.933959752699277
the lambda is 200.0
the regulation term lambda/alpha is 13.392295366528659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06047269771576798
the lambda is 200.0
the regulation term lambda/alpha is 3307.2776236977916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06246564804900035
the lambda is 200.0
the regulation term lambda/alpha is 3201.7597871251196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  34  iterations
the alpha is 80965275.10478315
the lambda is 200.0
the regulation term lambda/alpha is 2.470194780925097e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06200517490812275
the lambda is 200.0
the regulation term lambda/alpha is 3225.5372280838415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4444776793089975
the lambda is 200.0
the regulation term lambda/alpha is 138.45835270758568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 471148117.91033727
the lambda is 200.0
the regulation term lambda/alpha is 4.2449495688755224e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8499059035563283
the lambda is 200.0
the regulation term lambda/alpha is 235.3201679893318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07101364748800992
the lambda is 200.0
the regulation term lambda/alpha is 2816.360052956981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 7366.97939443603
the lambda is 200.0
the regulation term lambda/alpha is 0.027148168780145036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06586805109471264
the lambda is 200.0
the regulation term lambda/alpha is 3036.3734265101766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 32199.993295004133
the lambda is 200.0
the regulation term lambda/alpha is 0.006211181417575954
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 57.30172169298367
the lambda is 200.0
the regulation term lambda/alpha is 3.490296523228011
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.100764427081554
the lambda is 200.0
the regulation term lambda/alpha is 32.78277704220007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06818248237182437
the lambda is 200.0
the regulation term lambda/alpha is 2933.3047586816483
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06488464176643573
the lambda is 200.0
the regulation term lambda/alpha is 3082.393530350942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 97.59468349430679
the lambda is 200.0
the regulation term lambda/alpha is 2.0492919577086086
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1459611876767069
the lambda is 200.0
the regulation term lambda/alpha is 1370.227271944272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.314603216683454
the lambda is 200.0
the regulation term lambda/alpha is 86.40789857994572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.108277185621245
the lambda is 200.0
the regulation term lambda/alpha is 1847.1111790770274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.42622681753717334
the lambda is 200.0
the regulation term lambda/alpha is 469.2337313631304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 31.258775212866865
the lambda is 200.0
the regulation term lambda/alpha is 6.3982033409189745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 135994.1427689401
the lambda is 200.0
the regulation term lambda/alpha is 0.0014706515731328857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08880199229081713
the lambda is 200.0
the regulation term lambda/alpha is 2252.2017225134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05810214907762341
the lambda is 200.0
the regulation term lambda/alpha is 3442.2134667136606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059244225285220255
the lambda is 200.0
the regulation term lambda/alpha is 3375.8564490823765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13666011597728914
the lambda is 200.0
the regulation term lambda/alpha is 1463.484781713759
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06010437206379338
the lambda is 200.0
the regulation term lambda/alpha is 3327.5449544290163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06407455316559715
the lambda is 200.0
the regulation term lambda/alpha is 3121.3639443276493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.445167997361258
the lambda is 200.0
the regulation term lambda/alpha is 21.174848351651868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.3759529308093033
the lambda is 200.0
the regulation term lambda/alpha is 84.1767517388804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5808416300424586
the lambda is 200.0
the regulation term lambda/alpha is 344.3279366621506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 440.69932032609364
the lambda is 200.0
the regulation term lambda/alpha is 0.4538241625877953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4179315012045692
the lambda is 200.0
the regulation term lambda/alpha is 141.05053722982728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22886783160987664
the lambda is 200.0
the regulation term lambda/alpha is 873.8668016085189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 80.35038513971489
the lambda is 200.0
the regulation term lambda/alpha is 2.489098212189474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.42823560462389126
the lambda is 200.0
the regulation term lambda/alpha is 467.0326283954251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 292671710.4223888
the lambda is 200.0
the regulation term lambda/alpha is 6.833595215313315e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 18.842790782347016
the lambda is 200.0
the regulation term lambda/alpha is 10.614138972841072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09091759972084329
the lambda is 200.0
the regulation term lambda/alpha is 2199.794106026636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.925968272828743
the lambda is 200.0
the regulation term lambda/alpha is 33.74975882287851
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 17762.660342028405
the lambda is 200.0
the regulation term lambda/alpha is 0.011259574644163974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 431100217.23484915
the lambda is 200.0
the regulation term lambda/alpha is 4.63929248940848e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 38.11781681784574
the lambda is 200.0
the regulation term lambda/alpha is 5.246890212934896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.935042032318437
the lambda is 200.0
the regulation term lambda/alpha is 22.383778305305256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0621973292269698
the lambda is 200.0
the regulation term lambda/alpha is 3215.572155359955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7074395623226466
the lambda is 200.0
the regulation term lambda/alpha is 282.7096626365726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 517.3809429021585
the lambda is 200.0
the regulation term lambda/alpha is 0.3865623632717022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 883299.1712788754
the lambda is 200.0
the regulation term lambda/alpha is 0.0002264238510610534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 208590894.9851342
the lambda is 200.0
the regulation term lambda/alpha is 9.588146213872544e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7755035786682607
the lambda is 200.0
the regulation term lambda/alpha is 257.8969401320513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09167084033094336
the lambda is 200.0
the regulation term lambda/alpha is 2181.718846232615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 20.46192837607276
the lambda is 200.0
the regulation term lambda/alpha is 9.774249832379965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10973606097967602
the lambda is 200.0
the regulation term lambda/alpha is 1822.5549396842446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15717642359427983
the lambda is 200.0
the regulation term lambda/alpha is 1272.455470269898
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 76.956930351755
the lambda is 200.0
the regulation term lambda/alpha is 2.5988562574655627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07314314021374037
the lambda is 200.0
the regulation term lambda/alpha is 2734.364417709657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11770182378605068
the lambda is 200.0
the regulation term lambda/alpha is 1699.2090144970448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28172373747088103
the lambda is 200.0
the regulation term lambda/alpha is 709.9153298030913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11104676957698117
the lambda is 200.0
the regulation term lambda/alpha is 1801.0429367902827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.423446104358602
the lambda is 200.0
the regulation term lambda/alpha is 472.3151256827406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  22  iterations
the alpha is 110493.14933336661
the lambda is 200.0
the regulation term lambda/alpha is 0.0018100669698225733
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 492216678.1815182
the lambda is 200.0
the regulation term lambda/alpha is 4.063251183175971e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 5.309519144594554
the lambda is 200.0
the regulation term lambda/alpha is 37.66819453012301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.97911227
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992167102e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09583051272451176
the lambda is 200.0
the regulation term lambda/alpha is 2087.017947769401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3186324682352685
the lambda is 200.0
the regulation term lambda/alpha is 627.6824239152116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 496851881.19606364
the lambda is 200.0
the regulation term lambda/alpha is 4.0253445255866433e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06875672967560889
the lambda is 200.0
the regulation term lambda/alpha is 2908.806177134818
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 227.24187389471342
the lambda is 200.0
the regulation term lambda/alpha is 0.8801194804997285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27114906956311374
the lambda is 200.0
the regulation term lambda/alpha is 737.6016459221048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24760626434560715
the lambda is 200.0
the regulation term lambda/alpha is 807.7340067650363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07714295778266879
the lambda is 200.0
the regulation term lambda/alpha is 2592.589210326243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 395974237.6611712
the lambda is 200.0
the regulation term lambda/alpha is 5.050833639615131e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 498116686.5946456
the lambda is 200.0
the regulation term lambda/alpha is 4.015123471716875e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 163134.500830273
the lambda is 200.0
the regulation term lambda/alpha is 0.0012259822354075934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 41.48393777324141
the lambda is 200.0
the regulation term lambda/alpha is 4.821143091411322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10423729425960968
the lambda is 200.0
the regulation term lambda/alpha is 1918.6990742669045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0891105266033913
the lambda is 200.0
the regulation term lambda/alpha is 2244.4037491793765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.057987463006778345
the lambda is 200.0
the regulation term lambda/alpha is 3449.0213854781223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 25.506378644703474
the lambda is 200.0
the regulation term lambda/alpha is 7.841175840206191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13788288384936448
the lambda is 200.0
the regulation term lambda/alpha is 1450.5063602999323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 427074989.7367006
the lambda is 200.0
the regulation term lambda/alpha is 4.683018317773738e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 13.063875601997523
the lambda is 200.0
the regulation term lambda/alpha is 15.309392564134576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3055777819913794
the lambda is 200.0
the regulation term lambda/alpha is 654.4978456766277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7963002107206394
the lambda is 200.0
the regulation term lambda/alpha is 111.33996355751917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05369346311735871
the lambda is 200.0
the regulation term lambda/alpha is 3724.848210346511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.86123943
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999931100845e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 27.03294829918523
the lambda is 200.0
the regulation term lambda/alpha is 7.39837911079895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5892130406031217
the lambda is 200.0
the regulation term lambda/alpha is 339.4358003266168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06466697703809147
the lambda is 200.0
the regulation term lambda/alpha is 3092.7686612317116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09555755418038236
the lambda is 200.0
the regulation term lambda/alpha is 2092.9794793875053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07359133070691797
the lambda is 200.0
the regulation term lambda/alpha is 2717.71142169602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.1426537366678104
the lambda is 200.0
the regulation term lambda/alpha is 38.8904270520827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06390057262917567
the lambda is 200.0
the regulation term lambda/alpha is 3129.8624060949987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08086735149957044
the lambda is 200.0
the regulation term lambda/alpha is 2473.185980389903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 10125.396682748835
the lambda is 200.0
the regulation term lambda/alpha is 0.01975231255292451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.062093098245446614
the lambda is 200.0
the regulation term lambda/alpha is 3220.969892811981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6437844877692765
the lambda is 200.0
the regulation term lambda/alpha is 310.6629684306361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5744801464185026
the lambda is 200.0
the regulation term lambda/alpha is 348.1408387162994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999996.06550443
the lambda is 200.0
the regulation term lambda/alpha is 4.000000031475965e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1205696589513561
the lambda is 200.0
the regulation term lambda/alpha is 1658.7921185104299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28970739661449807
the lambda is 200.0
the regulation term lambda/alpha is 690.351721554876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10195595051677343
the lambda is 200.0
the regulation term lambda/alpha is 1961.631459333967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.4982147128176195
the lambda is 200.0
the regulation term lambda/alpha is 57.172019563919505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06810417719273733
the lambda is 200.0
the regulation term lambda/alpha is 2936.6774292565437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.103756774704753
the lambda is 200.0
the regulation term lambda/alpha is 21.96895248296946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15942610137270716
the lambda is 200.0
the regulation term lambda/alpha is 1254.4997229308078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.658705627628777
the lambda is 200.0
the regulation term lambda/alpha is 35.34377173173576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10517754524050459
the lambda is 200.0
the regulation term lambda/alpha is 1901.5465662624977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.65381861112204
the lambda is 200.0
the regulation term lambda/alpha is 54.73725471516568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8680894556950791
the lambda is 200.0
the regulation term lambda/alpha is 230.39100254922462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.556068183998748
the lambda is 200.0
the regulation term lambda/alpha is 359.66812300207107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09570788040546656
the lambda is 200.0
the regulation term lambda/alpha is 2089.692083375995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12832721125227844
the lambda is 200.0
the regulation term lambda/alpha is 1558.5159067068014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7633939971580994
the lambda is 200.0
the regulation term lambda/alpha is 113.41764819565093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 443.9139583801891
the lambda is 200.0
the regulation term lambda/alpha is 0.45053775900579013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07044207322954067
the lambda is 200.0
the regulation term lambda/alpha is 2839.212289341418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.8489736611303393
the lambda is 200.0
the regulation term lambda/alpha is 51.961904031649155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10684837269429454
the lambda is 200.0
the regulation term lambda/alpha is 1871.8113805272726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08327368398460827
the lambda is 200.0
the regulation term lambda/alpha is 2401.7191317843776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08928368251107116
the lambda is 200.0
the regulation term lambda/alpha is 2240.050974322212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 18.24035991486097
the lambda is 200.0
the regulation term lambda/alpha is 10.964695923409602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.4872326693430282
the lambda is 200.0
the regulation term lambda/alpha is 57.35206651343935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06492663746635756
the lambda is 200.0
the regulation term lambda/alpha is 3080.399783580848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 147.11897881561464
the lambda is 200.0
the regulation term lambda/alpha is 1.3594439113845507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7899598343329423
the lambda is 200.0
the regulation term lambda/alpha is 253.1774291649701
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06008249016654553
the lambda is 200.0
the regulation term lambda/alpha is 3328.756838233742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10838387652867644
the lambda is 200.0
the regulation term lambda/alpha is 1845.2929199951948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 497006566.3370494
the lambda is 200.0
the regulation term lambda/alpha is 4.0240917031339226e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 2.1684293970190294
the lambda is 200.0
the regulation term lambda/alpha is 92.2326547845841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0723153076763823
the lambda is 200.0
the regulation term lambda/alpha is 2765.666169810388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0639135086792258
the lambda is 200.0
the regulation term lambda/alpha is 3129.2289241039157
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05729633580240382
the lambda is 200.0
the regulation term lambda/alpha is 3490.624613234153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2123738729486373
the lambda is 200.0
the regulation term lambda/alpha is 164.96561371252272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28103286663386234
the lambda is 200.0
the regulation term lambda/alpha is 711.6605342127677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499948806.75441337
the lambda is 200.0
the regulation term lambda/alpha is 4.000409587900961e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06690963163344693
the lambda is 200.0
the regulation term lambda/alpha is 2989.1062783855405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17655055482175389
the lambda is 200.0
the regulation term lambda/alpha is 1132.8200027574014
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0826437298936106
the lambda is 200.0
the regulation term lambda/alpha is 2420.026301541147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5639028411614021
the lambda is 200.0
the regulation term lambda/alpha is 354.67102734947093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07889466532776757
the lambda is 200.0
the regulation term lambda/alpha is 2535.025646779802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 2136.6723185997994
the lambda is 200.0
the regulation term lambda/alpha is 0.09360349654881273
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12637024301560135
the lambda is 200.0
the regulation term lambda/alpha is 1582.6510674297629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14429820314093325
the lambda is 200.0
the regulation term lambda/alpha is 1386.0186450462165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 24.574452511625516
the lambda is 200.0
the regulation term lambda/alpha is 8.138533296128788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06413497275906382
the lambda is 200.0
the regulation term lambda/alpha is 3118.4234029589597
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10939997677973798
the lambda is 200.0
the regulation term lambda/alpha is 1828.153952927
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08276488023635128
the lambda is 200.0
the regulation term lambda/alpha is 2416.4838930336264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0755308610708173
the lambda is 200.0
the regulation term lambda/alpha is 2647.924267836443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13686424274605352
the lambda is 200.0
the regulation term lambda/alpha is 1461.302060985297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  24  iterations
the alpha is 17594.538539302874
the lambda is 200.0
the regulation term lambda/alpha is 0.011367163711241293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06450248554685538
the lambda is 200.0
the regulation term lambda/alpha is 3100.655708138838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11961454177961792
the lambda is 200.0
the regulation term lambda/alpha is 1672.0375050091077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06923736212134955
the lambda is 200.0
the regulation term lambda/alpha is 2888.613804342632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0971356684702183
the lambda is 200.0
the regulation term lambda/alpha is 182.29286108149986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3309839275165027
the lambda is 200.0
the regulation term lambda/alpha is 604.2589484651883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0663875264607735
the lambda is 200.0
the regulation term lambda/alpha is 3012.6141259107508
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06927417335484895
the lambda is 200.0
the regulation term lambda/alpha is 2887.0788392598074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07657101772150782
the lambda is 200.0
the regulation term lambda/alpha is 2611.9543131502946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07008228755877535
the lambda is 200.0
the regulation term lambda/alpha is 2853.7881248848735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07226875272181608
the lambda is 200.0
the regulation term lambda/alpha is 2767.4477899163344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05715790311607795
the lambda is 200.0
the regulation term lambda/alpha is 3499.0786767288178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1844.8629082772106
the lambda is 200.0
the regulation term lambda/alpha is 0.10840913929304705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2162713397685118
the lambda is 200.0
the regulation term lambda/alpha is 924.764234660367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10862024078088546
the lambda is 200.0
the regulation term lambda/alpha is 1841.2774503368175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1463827926867376
the lambda is 200.0
the regulation term lambda/alpha is 1366.280806160082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 60124.3359457114
the lambda is 200.0
the regulation term lambda/alpha is 0.0033264400654767776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07790695065290398
the lambda is 200.0
the regulation term lambda/alpha is 2567.165038855811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08635748761970082
the lambda is 200.0
the regulation term lambda/alpha is 2315.9543603301145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10526948570851204
the lambda is 200.0
the regulation term lambda/alpha is 1899.8857898270144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 419.93053610684126
the lambda is 200.0
the regulation term lambda/alpha is 0.476269246466789
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14512221261409902
the lambda is 200.0
the regulation term lambda/alpha is 1378.148778173807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.36354696892925475
the lambda is 200.0
the regulation term lambda/alpha is 550.1352427419617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08491933285225756
the lambda is 200.0
the regulation term lambda/alpha is 2355.176298287217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11661235531070684
the lambda is 200.0
the regulation term lambda/alpha is 1715.084130383197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 20.85958756350968
the lambda is 200.0
the regulation term lambda/alpha is 9.587917277418569
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.285307681656629
the lambda is 200.0
the regulation term lambda/alpha is 87.51556808097682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 14.647409329327223
the lambda is 200.0
the regulation term lambda/alpha is 13.654291725128315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  23  iterations
the alpha is 25015963.942739367
the lambda is 200.0
the regulation term lambda/alpha is 7.994894798289314e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 460984881.881897
the lambda is 200.0
the regulation term lambda/alpha is 4.338537072702515e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10675387445096704
the lambda is 200.0
the regulation term lambda/alpha is 1873.4683029407208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.531953443577257
the lambda is 200.0
the regulation term lambda/alpha is 36.15359421222267
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6948977026640397
the lambda is 200.0
the regulation term lambda/alpha is 118.0012219531834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  29  iterations
the alpha is 499093.6822689739
the lambda is 200.0
the regulation term lambda/alpha is 0.0004007263708303466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.147740106931664
the lambda is 200.0
the regulation term lambda/alpha is 38.85200026526028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1336674274762475
the lambda is 200.0
the regulation term lambda/alpha is 1496.2508351972265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10837166808366938
the lambda is 200.0
the regulation term lambda/alpha is 1845.5007986551254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10186992387198891
the lambda is 200.0
the regulation term lambda/alpha is 1963.2880088466802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2185142511615387
the lambda is 200.0
the regulation term lambda/alpha is 915.2721112553347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18993549037224317
the lambda is 200.0
the regulation term lambda/alpha is 1052.9890943921644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07871326838138248
the lambda is 200.0
the regulation term lambda/alpha is 2540.8676848604173
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 190.92737228511524
the lambda is 200.0
the regulation term lambda/alpha is 1.0475187376555755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05942038438341804
the lambda is 200.0
the regulation term lambda/alpha is 3365.8483040007454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 165230.18224038178
the lambda is 200.0
the regulation term lambda/alpha is 0.0012104326055213934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 48.56251525924875
the lambda is 200.0
the regulation term lambda/alpha is 4.118402824324671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 496109295.82108223
the lambda is 200.0
the regulation term lambda/alpha is 4.031369734142784e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1692369469333012
the lambda is 200.0
the regulation term lambda/alpha is 1181.7750415860608
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.7917391688684585
the lambda is 200.0
the regulation term lambda/alpha is 41.73849889396815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11223975153500772
the lambda is 200.0
the regulation term lambda/alpha is 1781.8998818579864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 466551572.5514598
the lambda is 200.0
the regulation term lambda/alpha is 4.286771533235811e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08033393938835305
the lambda is 200.0
the regulation term lambda/alpha is 2489.6077737847913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23281641969055694
the lambda is 200.0
the regulation term lambda/alpha is 859.0459395682908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9572079094532877
the lambda is 200.0
the regulation term lambda/alpha is 102.18638450928115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10214590830091645
the lambda is 200.0
the regulation term lambda/alpha is 1957.9834701827758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9493596994340924
the lambda is 200.0
the regulation term lambda/alpha is 210.6683063534494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2551186768397838
the lambda is 200.0
the regulation term lambda/alpha is 783.9488761757781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12333036998399809
the lambda is 200.0
the regulation term lambda/alpha is 1621.6605855147411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 185807.44152138155
the lambda is 200.0
the regulation term lambda/alpha is 0.001076383154315083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.457061136190639
the lambda is 200.0
the regulation term lambda/alpha is 81.3980560166584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 468.4021221374325
the lambda is 200.0
the regulation term lambda/alpha is 0.42698354799792854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1111.8851418854902
the lambda is 200.0
the regulation term lambda/alpha is 0.17987469430596764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2120.705848996067
the lambda is 200.0
the regulation term lambda/alpha is 0.09430822294128116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 15.637096213394482
the lambda is 200.0
the regulation term lambda/alpha is 12.790098447350044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06864362703448226
the lambda is 200.0
the regulation term lambda/alpha is 2913.5989550717145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056254707180259
the lambda is 200.0
the regulation term lambda/alpha is 3555.258040169558
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.428062495463413
the lambda is 200.0
the regulation term lambda/alpha is 26.924921555539854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10604176202954006
the lambda is 200.0
the regulation term lambda/alpha is 1886.0493844329555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05934559236106408
the lambda is 200.0
the regulation term lambda/alpha is 3370.090212988043
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.438330699190158
the lambda is 200.0
the regulation term lambda/alpha is 139.0500808420543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23649061684137188
the lambda is 200.0
the regulation term lambda/alpha is 845.6995151488472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.42847086174542237
the lambda is 200.0
the regulation term lambda/alpha is 466.7761984683821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07794736054497303
the lambda is 200.0
the regulation term lambda/alpha is 2565.8341552772226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2390002910390555
the lambda is 200.0
the regulation term lambda/alpha is 836.8190646567773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 5461.820993347744
the lambda is 200.0
the regulation term lambda/alpha is 0.036617824026746966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9981004
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992015197e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15221194239999136
the lambda is 200.0
the regulation term lambda/alpha is 1313.9573468843096
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05986577249236306
the lambda is 200.0
the regulation term lambda/alpha is 3340.807136924752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  25  iterations
the alpha is 8596936.444092782
the lambda is 200.0
the regulation term lambda/alpha is 2.3264101264518028e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 3216.0123381727053
the lambda is 200.0
the regulation term lambda/alpha is 0.06218881613919345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12394174219222451
the lambda is 200.0
the regulation term lambda/alpha is 1613.6613578483893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  55  iterations
the alpha is 239707.40563190123
the lambda is 200.0
the regulation term lambda/alpha is 0.0008343505261039928
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.810386889601435
the lambda is 200.0
the regulation term lambda/alpha is 25.60692611351626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2579105764689937
the lambda is 200.0
the regulation term lambda/alpha is 158.99381382213048
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2549431069912196
the lambda is 200.0
the regulation term lambda/alpha is 784.4887526489906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 12427.313973492257
the lambda is 200.0
the regulation term lambda/alpha is 0.01609358228387925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2141759781789969
the lambda is 200.0
the regulation term lambda/alpha is 933.8115399330668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07891963069507885
the lambda is 200.0
the regulation term lambda/alpha is 2534.2237189722596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20740642044043073
the lambda is 200.0
the regulation term lambda/alpha is 964.2903029486596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11001233271057474
the lambda is 200.0
the regulation term lambda/alpha is 1817.977994577833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 291.86053053844097
the lambda is 200.0
the regulation term lambda/alpha is 0.6852588105388165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2245928657364207
the lambda is 200.0
the regulation term lambda/alpha is 890.5002362573592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14358819444619758
the lambda is 200.0
the regulation term lambda/alpha is 1392.872170106853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07299367535566025
the lambda is 200.0
the regulation term lambda/alpha is 2739.9634149877224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08846793069480376
the lambda is 200.0
the regulation term lambda/alpha is 2260.706206523119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08789131848460915
the lambda is 200.0
the regulation term lambda/alpha is 2275.5376008498774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.064786187593601
the lambda is 200.0
the regulation term lambda/alpha is 65.25740712667313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 471023.426014772
the lambda is 200.0
the regulation term lambda/alpha is 0.00042460733151248345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18842317020176994
the lambda is 200.0
the regulation term lambda/alpha is 1061.4405849653904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08245608410668344
the lambda is 200.0
the regulation term lambda/alpha is 2425.533569375375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.2317056266119346
the lambda is 200.0
the regulation term lambda/alpha is 61.88682482496916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 15819.792521883
the lambda is 200.0
the regulation term lambda/alpha is 0.01264239083561599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0618721034109642
the lambda is 200.0
the regulation term lambda/alpha is 3232.4745559653707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10184955882538384
the lambda is 200.0
the regulation term lambda/alpha is 1963.6805726659097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07022210232538777
the lambda is 200.0
the regulation term lambda/alpha is 2848.10612865535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3617135386365398
the lambda is 200.0
the regulation term lambda/alpha is 146.87376920718327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06410159948002446
the lambda is 200.0
the regulation term lambda/alpha is 3120.0469508147708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 21.365608884420514
the lambda is 200.0
the regulation term lambda/alpha is 9.360837834387066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11628614288803954
the lambda is 200.0
the regulation term lambda/alpha is 1719.8953807639855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0687042915293066
the lambda is 200.0
the regulation term lambda/alpha is 2911.0263063361585
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.132228627331763
the lambda is 200.0
the regulation term lambda/alpha is 21.900459149853283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.33408606033995
the lambda is 200.0
the regulation term lambda/alpha is 149.91536599148353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07664661837450701
the lambda is 200.0
the regulation term lambda/alpha is 2609.378003120368
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.788719178411473
the lambda is 200.0
the regulation term lambda/alpha is 253.5756774709242
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.2493697272324873
the lambda is 200.0
the regulation term lambda/alpha is 61.55039801221436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 163274371.01149225
the lambda is 200.0
the regulation term lambda/alpha is 1.2249319887805465e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08284167640241522
the lambda is 200.0
the regulation term lambda/alpha is 2414.243756107392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10488142975710153
the lambda is 200.0
the regulation term lambda/alpha is 1906.9152705410938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11613514444938852
the lambda is 200.0
the regulation term lambda/alpha is 1722.1315816863655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05749325924430968
the lambda is 200.0
the regulation term lambda/alpha is 3478.6686757507964
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 15.421643131100295
the lambda is 200.0
the regulation term lambda/alpha is 12.96878667855223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.24931271616208303
the lambda is 200.0
the regulation term lambda/alpha is 802.2053711451128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7531108248857582
the lambda is 200.0
the regulation term lambda/alpha is 265.5651643705143
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1244178473125514
the lambda is 200.0
the regulation term lambda/alpha is 1607.4864203169973
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17348207851130518
the lambda is 200.0
the regulation term lambda/alpha is 1152.8568352203986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19086749878994458
the lambda is 200.0
the regulation term lambda/alpha is 1047.847335287324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06559456565083874
the lambda is 200.0
the regulation term lambda/alpha is 3049.033071803604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8410222265830922
the lambda is 200.0
the regulation term lambda/alpha is 237.80584350613495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 54698.6752406488
the lambda is 200.0
the regulation term lambda/alpha is 0.0036563956827124744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.996591
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992027272e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8928176740508631
the lambda is 200.0
the regulation term lambda/alpha is 224.00990237185445
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 70491.02765101084
the lambda is 200.0
the regulation term lambda/alpha is 0.0028372405207392664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1644177407421692
the lambda is 200.0
the regulation term lambda/alpha is 1216.413746455919
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.827047963678098
the lambda is 200.0
the regulation term lambda/alpha is 22.657631500697434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1797194844293304
the lambda is 200.0
the regulation term lambda/alpha is 1112.845391444712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999457.3817556
the lambda is 200.0
the regulation term lambda/alpha is 4.000004340950666e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0806744400622156
the lambda is 200.0
the regulation term lambda/alpha is 2479.0999459774534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.067042772967646
the lambda is 200.0
the regulation term lambda/alpha is 2983.170163568823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09120166594031875
the lambda is 200.0
the regulation term lambda/alpha is 2192.942397903976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0802887050035925
the lambda is 200.0
the regulation term lambda/alpha is 185.13569481348497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09109015913738606
the lambda is 200.0
the regulation term lambda/alpha is 2195.6268590809186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  36  iterations
the alpha is 100759.47730017545
the lambda is 200.0
the regulation term lambda/alpha is 0.0019849249456125526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22566600185269217
the lambda is 200.0
the regulation term lambda/alpha is 886.2655356058191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09868815574389975
the lambda is 200.0
the regulation term lambda/alpha is 2026.585647410507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3790094825739402
the lambda is 200.0
the regulation term lambda/alpha is 527.6912826606717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1276194295857928
the lambda is 200.0
the regulation term lambda/alpha is 1567.1594885600784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1159.9418190129788
the lambda is 200.0
the regulation term lambda/alpha is 0.1724224411274219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 33.27274807583512
the lambda is 200.0
the regulation term lambda/alpha is 6.010925203537766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05573696528187055
the lambda is 200.0
the regulation term lambda/alpha is 3588.2829104270163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14057162129991424
the lambda is 200.0
the regulation term lambda/alpha is 1422.7622769840104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07197192933083371
the lambda is 200.0
the regulation term lambda/alpha is 2778.8611735091754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06627406051229746
the lambda is 200.0
the regulation term lambda/alpha is 3017.7719375273387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08741780662649223
the lambda is 200.0
the regulation term lambda/alpha is 2287.863396693705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08425556498643307
the lambda is 200.0
the regulation term lambda/alpha is 2373.730447741989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.069073163291994
the lambda is 200.0
the regulation term lambda/alpha is 2895.48053785429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11833043490233985
the lambda is 200.0
the regulation term lambda/alpha is 1690.1822440276117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06502945977466493
the lambda is 200.0
the regulation term lambda/alpha is 3075.5291631365935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 30.931467097875505
the lambda is 200.0
the regulation term lambda/alpha is 6.465907335308282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 123203562.35610098
the lambda is 200.0
the regulation term lambda/alpha is 1.623329684428529e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 16.42881140016029
the lambda is 200.0
the regulation term lambda/alpha is 12.173735222138388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05895408241012663
the lambda is 200.0
the regulation term lambda/alpha is 3392.4707471258293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2073632330623103
the lambda is 200.0
the regulation term lambda/alpha is 964.4911349347175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 300065.2220312593
the lambda is 200.0
the regulation term lambda/alpha is 0.000666521760323044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07168796020438394
the lambda is 200.0
the regulation term lambda/alpha is 2789.8687510398627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0876234918299621
the lambda is 200.0
the regulation term lambda/alpha is 2282.4929231091396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0646015815699368
the lambda is 200.0
the regulation term lambda/alpha is 187.86370738343808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999686
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000251e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 466136727.8953199
the lambda is 200.0
the regulation term lambda/alpha is 4.2905866032704875e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99999875
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920000103e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999681.8333403
the lambda is 200.0
the regulation term lambda/alpha is 4.0000025453348973e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06260998780016694
the lambda is 200.0
the regulation term lambda/alpha is 3194.3785173436295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 3937.2343827830978
the lambda is 200.0
the regulation term lambda/alpha is 0.05079707748021513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4387961230135618
the lambda is 200.0
the regulation term lambda/alpha is 455.79254125228135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06708431580149385
the lambda is 200.0
the regulation term lambda/alpha is 2981.322796699767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.5451832102687278
the lambda is 200.0
the regulation term lambda/alpha is 366.8491549866648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 271.3285862033186
the lambda is 200.0
the regulation term lambda/alpha is 0.7371136333203427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 155157919.3114336
the lambda is 200.0
the regulation term lambda/alpha is 1.2890092938057462e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13724144838623942
the lambda is 200.0
the regulation term lambda/alpha is 1457.2856986844006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.356210530088674
the lambda is 200.0
the regulation term lambda/alpha is 45.91146332772141
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11404259752492432
the lambda is 200.0
the regulation term lambda/alpha is 1753.7306615301309
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6073177222281438
the lambda is 200.0
the regulation term lambda/alpha is 329.31691712574195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.7434201884222781
the lambda is 200.0
the regulation term lambda/alpha is 269.0268614098974
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.721884426982075
the lambda is 200.0
the regulation term lambda/alpha is 116.1518141786888
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 2290.8900284723677
the lambda is 200.0
the regulation term lambda/alpha is 0.08730231373583909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12094341106150414
the lambda is 200.0
the regulation term lambda/alpha is 1653.6659438048487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06060302414608267
the lambda is 200.0
the regulation term lambda/alpha is 3300.165343529772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 496138580.53756535
the lambda is 200.0
the regulation term lambda/alpha is 4.031131781432928e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1485244824782337
the lambda is 200.0
the regulation term lambda/alpha is 1346.579342764652
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499996391.9383451
the lambda is 200.0
the regulation term lambda/alpha is 4.0000288647015307e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 26.41521043476802
the lambda is 200.0
the regulation term lambda/alpha is 7.571395294915295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0691834715751173
the lambda is 200.0
the regulation term lambda/alpha is 2890.863893449552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16299181895369425
the lambda is 200.0
the regulation term lambda/alpha is 1227.0554515182123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09503355819540132
the lambda is 200.0
the regulation term lambda/alpha is 2104.5197485794865
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 691781.9049532036
the lambda is 200.0
the regulation term lambda/alpha is 0.0002891084582698491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 10.988640618322385
the lambda is 200.0
the regulation term lambda/alpha is 18.200613428609298
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24982400226404325
the lambda is 200.0
the regulation term lambda/alpha is 800.5635895169776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11210333844963447
the lambda is 200.0
the regulation term lambda/alpha is 1784.0681889224516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.1118251443170557
the lambda is 200.0
the regulation term lambda/alpha is 94.70481045185117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2182064362098117
the lambda is 200.0
the regulation term lambda/alpha is 90.16293377172528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 62.823062031666254
the lambda is 200.0
the regulation term lambda/alpha is 3.183544283454205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07834443883614314
the lambda is 200.0
the regulation term lambda/alpha is 2552.8295686474776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.22694699872704
the lambda is 200.0
the regulation term lambda/alpha is 11.609718194104778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 11.298216229909992
the lambda is 200.0
the regulation term lambda/alpha is 17.701909392611554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10334808383655757
the lambda is 200.0
the regulation term lambda/alpha is 1935.2076262613155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5081767389417796
the lambda is 200.0
the regulation term lambda/alpha is 393.56386208561474
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06533672040414988
the lambda is 200.0
the regulation term lambda/alpha is 3061.065795204758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09472342331699464
the lambda is 200.0
the regulation term lambda/alpha is 2111.4101770867624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.17347196657364952
the lambda is 200.0
the regulation term lambda/alpha is 1152.9240369514557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 18.129262972270613
the lambda is 200.0
the regulation term lambda/alpha is 11.031888075423005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.935743915841903
the lambda is 200.0
the regulation term lambda/alpha is 50.81631434275306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.328212318845274
the lambda is 200.0
the regulation term lambda/alpha is 150.57833537779317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 95.08792294369563
the lambda is 200.0
the regulation term lambda/alpha is 2.103316528623997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 132.43612795964395
the lambda is 200.0
the regulation term lambda/alpha is 1.5101619405615978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06986529121742842
the lambda is 200.0
the regulation term lambda/alpha is 2862.651776224308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10259573506162595
the lambda is 200.0
the regulation term lambda/alpha is 1949.3987725695074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11563792043493204
the lambda is 200.0
the regulation term lambda/alpha is 1729.5364638845906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11289733284855953
the lambda is 200.0
the regulation term lambda/alpha is 1771.5210355613979
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 727.4495391046648
the lambda is 200.0
the regulation term lambda/alpha is 0.274933159276116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 19.863710151632656
the lambda is 200.0
the regulation term lambda/alpha is 10.068612483431824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.058159074016547616
the lambda is 200.0
the regulation term lambda/alpha is 3438.8442969895864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5132947814638027
the lambda is 200.0
the regulation term lambda/alpha is 389.6396519552457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 32315193.684307218
the lambda is 200.0
the regulation term lambda/alpha is 6.189039185524772e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 1140.849798598644
the lambda is 200.0
the regulation term lambda/alpha is 0.1753079154203023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07327358205371154
the lambda is 200.0
the regulation term lambda/alpha is 2729.4966943665254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 32.765441487274764
the lambda is 200.0
the regulation term lambda/alpha is 6.1039922223442264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11651959782795535
the lambda is 200.0
the regulation term lambda/alpha is 1716.4494533812754
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.279483089339498
the lambda is 200.0
the regulation term lambda/alpha is 60.985220704486345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 230801.02972253706
the lambda is 200.0
the regulation term lambda/alpha is 0.0008665472603845604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20095454283995937
the lambda is 200.0
the regulation term lambda/alpha is 995.249956400739
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19659643619137324
the lambda is 200.0
the regulation term lambda/alpha is 1017.3124389971832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07699602555984465
the lambda is 200.0
the regulation term lambda/alpha is 2597.5366721305804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.242688384918143
the lambda is 200.0
the regulation term lambda/alpha is 21.638725841536772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499998329.2076817
the lambda is 200.0
the regulation term lambda/alpha is 4.0000133663832113e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06635128374762349
the lambda is 200.0
the regulation term lambda/alpha is 3014.2596902982064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 488388150.9540458
the lambda is 200.0
the regulation term lambda/alpha is 4.09510344608706e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13148737873312782
the lambda is 200.0
the regulation term lambda/alpha is 1521.0585375340715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06018748788242564
the lambda is 200.0
the regulation term lambda/alpha is 3322.9497863525007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10042586479617535
the lambda is 200.0
the regulation term lambda/alpha is 1991.5188224260814
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.6910925986241687
the lambda is 200.0
the regulation term lambda/alpha is 54.18449812788461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14854205446611374
the lambda is 200.0
the regulation term lambda/alpha is 1346.4200472979533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07216346718003823
the lambda is 200.0
the regulation term lambda/alpha is 2771.4854595473726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.380913245829186
the lambda is 200.0
the regulation term lambda/alpha is 84.0013807098407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15510186744653312
the lambda is 200.0
the regulation term lambda/alpha is 1289.4751255586539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21054950001149342
the lambda is 200.0
the regulation term lambda/alpha is 949.8953927180186
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0949238628387443
the lambda is 200.0
the regulation term lambda/alpha is 2106.951761326422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0646971043434387
the lambda is 200.0
the regulation term lambda/alpha is 3091.3284609820894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 294627509.4237556
the lambda is 200.0
the regulation term lambda/alpha is 6.788232381666196e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07926587400334831
the lambda is 200.0
the regulation term lambda/alpha is 2523.153910995187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19036335399964122
the lambda is 200.0
the regulation term lambda/alpha is 1050.6223797694643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08699952472871905
the lambda is 200.0
the regulation term lambda/alpha is 2298.8631331451265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.843340935861814
the lambda is 200.0
the regulation term lambda/alpha is 52.03805838139959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06871175684683567
the lambda is 200.0
the regulation term lambda/alpha is 2910.710032430359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13929636749329147
the lambda is 200.0
the regulation term lambda/alpha is 1435.787620302676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 55.96914943383974
the lambda is 200.0
the regulation term lambda/alpha is 3.5733971665304094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08527395035351974
the lambda is 200.0
the regulation term lambda/alpha is 2345.382138048737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9229184008880367
the lambda is 200.0
the regulation term lambda/alpha is 216.7038817381461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11889477565329931
the lambda is 200.0
the regulation term lambda/alpha is 1682.1596987844607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10414627004817753
the lambda is 200.0
the regulation term lambda/alpha is 1920.376024100345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 450749226.1515036
the lambda is 200.0
the regulation term lambda/alpha is 4.437056979722401e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05851155129270402
the lambda is 200.0
the regulation term lambda/alpha is 3418.1284820069127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.440354805836625
the lambda is 200.0
the regulation term lambda/alpha is 16.076711888166265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.49274516145148517
the lambda is 200.0
the regulation term lambda/alpha is 405.88932301406606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07629584976716218
the lambda is 200.0
the regulation term lambda/alpha is 2621.374565069465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 30.714116642501267
the lambda is 200.0
the regulation term lambda/alpha is 6.511663751489634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16710363424650948
the lambda is 200.0
the regulation term lambda/alpha is 1196.8620604921264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 292805457.3582041
the lambda is 200.0
the regulation term lambda/alpha is 6.830473782984502e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07566397483202585
the lambda is 200.0
the regulation term lambda/alpha is 2643.2658401042286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.717424317825407
the lambda is 200.0
the regulation term lambda/alpha is 73.59910584742543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09942507740799712
the lambda is 200.0
the regulation term lambda/alpha is 2011.564941300345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 34431.91319856596
the lambda is 200.0
the regulation term lambda/alpha is 0.005808564828989221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15471521165961558
the lambda is 200.0
the regulation term lambda/alpha is 1292.6977111986516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39721946425370297
the lambda is 200.0
the regulation term lambda/alpha is 503.49999936624596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09240588458407689
the lambda is 200.0
the regulation term lambda/alpha is 2164.364324850188
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09579428995129793
the lambda is 200.0
the regulation term lambda/alpha is 2087.807113573059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.112328901158106
the lambda is 200.0
the regulation term lambda/alpha is 48.634242252285894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.168979798064552
the lambda is 200.0
the regulation term lambda/alpha is 171.08935529179763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0580705078618397
the lambda is 200.0
the regulation term lambda/alpha is 3444.089045610491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22180636854269145
the lambda is 200.0
the regulation term lambda/alpha is 901.6873650384193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12743275630656878
the lambda is 200.0
the regulation term lambda/alpha is 1569.4551840254796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.552433989815089
the lambda is 200.0
the regulation term lambda/alpha is 78.35658073746659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06079652219821728
the lambda is 200.0
the regulation term lambda/alpha is 3289.6618551293473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09046678211219923
the lambda is 200.0
the regulation term lambda/alpha is 2210.7562060951263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16414831701107516
the lambda is 200.0
the regulation term lambda/alpha is 1218.4102989402318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 31.470118401372233
the lambda is 200.0
the regulation term lambda/alpha is 6.355235066140684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.641724680335513
the lambda is 200.0
the regulation term lambda/alpha is 35.4501524502089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09238566159284481
the lambda is 200.0
the regulation term lambda/alpha is 2164.8380988104527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060967861302800096
the lambda is 200.0
the regulation term lambda/alpha is 3280.416857771826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1674280534940737
the lambda is 200.0
the regulation term lambda/alpha is 1194.542944424061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1563529742874384
the lambda is 200.0
the regulation term lambda/alpha is 1279.1569902106316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1113548437732692
the lambda is 200.0
the regulation term lambda/alpha is 1796.060173253192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06374496514998232
the lambda is 200.0
the regulation term lambda/alpha is 3137.5026957726004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  26  iterations
the alpha is 11356543.896504236
the lambda is 200.0
the regulation term lambda/alpha is 1.7610991673405488e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08425980757716646
the lambda is 200.0
the regulation term lambda/alpha is 2373.6109273313596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07883961427312625
the lambda is 200.0
the regulation term lambda/alpha is 2536.795770044416
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16394008348432534
the lambda is 200.0
the regulation term lambda/alpha is 1219.9579001624847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08129469844317637
the lambda is 200.0
the regulation term lambda/alpha is 2460.1850284221996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10422747442860213
the lambda is 200.0
the regulation term lambda/alpha is 1918.8798452274111
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 392.75533393216335
the lambda is 200.0
the regulation term lambda/alpha is 0.5092228741941006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 3476.437244373729
the lambda is 200.0
the regulation term lambda/alpha is 0.05753016261797341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 723806.8623316932
the lambda is 200.0
the regulation term lambda/alpha is 0.00027631680550211144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.9835841239848
the lambda is 200.0
the regulation term lambda/alpha is 50.20604404857878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.753882459914063
the lambda is 200.0
the regulation term lambda/alpha is 13.5557539205965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09317956678404754
the lambda is 200.0
the regulation term lambda/alpha is 2146.393323157629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11831215638515567
the lambda is 200.0
the regulation term lambda/alpha is 1690.4433670274434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8907155846621945
the lambda is 200.0
the regulation term lambda/alpha is 224.5385658945783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08032166696635545
the lambda is 200.0
the regulation term lambda/alpha is 2489.9881632657666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1360590937128898
the lambda is 200.0
the regulation term lambda/alpha is 1469.9495237123767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 50646962.601291694
the lambda is 200.0
the regulation term lambda/alpha is 3.9489041341819625e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06486731191055659
the lambda is 200.0
the regulation term lambda/alpha is 3083.2170180841385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07245831605900332
the lambda is 200.0
the regulation term lambda/alpha is 2760.2076735697055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.630312570344495
the lambda is 200.0
the regulation term lambda/alpha is 13.67024792111401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 7257920.158886838
the lambda is 200.0
the regulation term lambda/alpha is 2.755610362496388e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 32778113.28989823
the lambda is 200.0
the regulation term lambda/alpha is 6.101632459170165e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3872066458623013
the lambda is 200.0
the regulation term lambda/alpha is 516.5200601208796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.4623685826122323
the lambda is 200.0
the regulation term lambda/alpha is 57.763925251744055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 68253.75336126893
the lambda is 200.0
the regulation term lambda/alpha is 0.00293024178379458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14189381739888077
the lambda is 200.0
the regulation term lambda/alpha is 1409.5046822073698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15260950861489034
the lambda is 200.0
the regulation term lambda/alpha is 1310.5343291858665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1669.039514914859
the lambda is 200.0
the regulation term lambda/alpha is 0.11982939781398909
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999996.53621906
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000277102475e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24312166681482053
the lambda is 200.0
the regulation term lambda/alpha is 822.6333860746965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15370204291084327
the lambda is 200.0
the regulation term lambda/alpha is 1301.2188791531705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7170271976781086
the lambda is 200.0
the regulation term lambda/alpha is 116.48039138253303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060865906267691144
the lambda is 200.0
the regulation term lambda/alpha is 3285.911806198868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13706052863747814
the lambda is 200.0
the regulation term lambda/alpha is 1459.2093142220053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0559662298315086
the lambda is 200.0
the regulation term lambda/alpha is 3573.5835807078324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1273479158457385
the lambda is 200.0
the regulation term lambda/alpha is 1570.5007708352903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6805979991452495
the lambda is 200.0
the regulation term lambda/alpha is 293.8592241692986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.062611555055798
the lambda is 200.0
the regulation term lambda/alpha is 65.3037436856259
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 990.8380811651298
the lambda is 200.0
the regulation term lambda/alpha is 0.20184932715224202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06751614021306274
the lambda is 200.0
the regulation term lambda/alpha is 2962.254645612944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1580111402141315
the lambda is 200.0
the regulation term lambda/alpha is 172.70991016806397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05873995621206569
the lambda is 200.0
the regulation term lambda/alpha is 3404.8374036567343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15987159254774022
the lambda is 200.0
the regulation term lambda/alpha is 1251.0039889686893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 1531.8355696196375
the lambda is 200.0
the regulation term lambda/alpha is 0.13056231619537403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061615212491337105
the lambda is 200.0
the regulation term lambda/alpha is 3245.9516394286447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.904644085419825
the lambda is 200.0
the regulation term lambda/alpha is 105.00649519299331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 182.88140293337094
the lambda is 200.0
the regulation term lambda/alpha is 1.0936049089303295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11143321396869327
the lambda is 200.0
the regulation term lambda/alpha is 1794.7970167690687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 55151286.35323136
the lambda is 200.0
the regulation term lambda/alpha is 3.6263886705932076e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05775488695063593
the lambda is 200.0
the regulation term lambda/alpha is 3462.9104229905834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06243528697478193
the lambda is 200.0
the regulation term lambda/alpha is 3203.316741072744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6090036344466949
the lambda is 200.0
the regulation term lambda/alpha is 328.4052650715431
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07736936374713425
the lambda is 200.0
the regulation term lambda/alpha is 2585.002516676479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11235041812227287
the lambda is 200.0
the regulation term lambda/alpha is 1780.1446878669967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1582793114494489
the lambda is 200.0
the regulation term lambda/alpha is 1263.5890197429612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1426266933587786
the lambda is 200.0
the regulation term lambda/alpha is 1402.2620541086121
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.020477485575055
the lambda is 200.0
the regulation term lambda/alpha is 98.98650265982911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07845206016529015
the lambda is 200.0
the regulation term lambda/alpha is 2549.327571240593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.24602583033939504
the lambda is 200.0
the regulation term lambda/alpha is 812.922772068681
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3709511187375995
the lambda is 200.0
the regulation term lambda/alpha is 539.1545944938218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99990946
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920007244e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22808629032323668
the lambda is 200.0
the regulation term lambda/alpha is 876.8611200461296
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.702925172764552
the lambda is 200.0
the regulation term lambda/alpha is 73.99390927105836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26187134043887533
the lambda is 200.0
the regulation term lambda/alpha is 763.7338231240427
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07597952685797109
the lambda is 200.0
the regulation term lambda/alpha is 2632.288042196696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.053081917298021995
the lambda is 200.0
the regulation term lambda/alpha is 3767.761418208092
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11664760693254399
the lambda is 200.0
the regulation term lambda/alpha is 1714.5658214459365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.471083205750765
the lambda is 200.0
the regulation term lambda/alpha is 135.95424053388626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7259639914684468
the lambda is 200.0
the regulation term lambda/alpha is 115.87727263640095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08984146333862922
the lambda is 200.0
the regulation term lambda/alpha is 2226.143615294452
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07066674768556673
the lambda is 200.0
the regulation term lambda/alpha is 2830.1854344550347
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 952882.7160851696
the lambda is 200.0
the regulation term lambda/alpha is 0.00020988941936283772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0824271757290462
the lambda is 200.0
the regulation term lambda/alpha is 2426.384238341952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 113.44275639483969
the lambda is 200.0
the regulation term lambda/alpha is 1.7630037065028301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.377099025283996
the lambda is 200.0
the regulation term lambda/alpha is 84.13616676154484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1270784946526524
the lambda is 200.0
the regulation term lambda/alpha is 1573.8304151828854
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 87.78043971664037
the lambda is 200.0
the regulation term lambda/alpha is 2.2784119177986573
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15821363272737965
the lambda is 200.0
the regulation term lambda/alpha is 1264.1135694331922
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 145415.97560964987
the lambda is 200.0
the regulation term lambda/alpha is 0.0013753647022722853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39408843133015403
the lambda is 200.0
the regulation term lambda/alpha is 507.50030729130117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 49.50521485711407
the lambda is 200.0
the regulation term lambda/alpha is 4.039978426055843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09903613076725643
the lambda is 200.0
the regulation term lambda/alpha is 2019.4650018185534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31131219177123554
the lambda is 200.0
the regulation term lambda/alpha is 642.4419129301813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07812024119288782
the lambda is 200.0
the regulation term lambda/alpha is 2560.155946090554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05642602761179028
the lambda is 200.0
the regulation term lambda/alpha is 3544.463582940752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17395447534808595
the lambda is 200.0
the regulation term lambda/alpha is 1149.7260970135808
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1317416810500071
the lambda is 200.0
the regulation term lambda/alpha is 1518.1224226528816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2101988737175283
the lambda is 200.0
the regulation term lambda/alpha is 951.4798840871343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.013211934429422
the lambda is 200.0
the regulation term lambda/alpha is 99.34373852034777
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.46971528123052436
the lambda is 200.0
the regulation term lambda/alpha is 425.7898518354677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0059266405663863
the lambda is 200.0
the regulation term lambda/alpha is 198.8216555109726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.256124480648257
the lambda is 200.0
the regulation term lambda/alpha is 61.42271316365101
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.326595813915411
the lambda is 200.0
the regulation term lambda/alpha is 612.3777203457985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08168608310507622
the lambda is 200.0
the regulation term lambda/alpha is 2448.3974796873495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 347.60638794904406
the lambda is 200.0
the regulation term lambda/alpha is 0.5753634194700651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08655068309481781
the lambda is 200.0
the regulation term lambda/alpha is 2310.7847662033637
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 252880961.17318463
the lambda is 200.0
the regulation term lambda/alpha is 7.908859531067295e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3958144855759954
the lambda is 200.0
the regulation term lambda/alpha is 505.28721734111593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06124940091911072
the lambda is 200.0
the regulation term lambda/alpha is 3265.33806043476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10785792023491388
the lambda is 200.0
the regulation term lambda/alpha is 1854.2912710017147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 14751.335098934742
the lambda is 200.0
the regulation term lambda/alpha is 0.013558094820477835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0958652159845041
the lambda is 200.0
the regulation term lambda/alpha is 182.5041958470448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08371267673526088
the lambda is 200.0
the regulation term lambda/alpha is 2389.1244169923593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.551921507290688
the lambda is 200.0
the regulation term lambda/alpha is 78.37231647941049
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499720006.38034976
the lambda is 200.0
the regulation term lambda/alpha is 4.002241204002844e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 497338317.7123897
the lambda is 200.0
the regulation term lambda/alpha is 4.0214074177903946e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499740322.9546461
the lambda is 200.0
the regulation term lambda/alpha is 4.002078495838147e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25258897327854457
the lambda is 200.0
the regulation term lambda/alpha is 791.8002017429651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 173541.13903544584
the lambda is 200.0
the regulation term lambda/alpha is 0.0011524644883144967
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10316704852827577
the lambda is 200.0
the regulation term lambda/alpha is 1938.6034868021304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0997883929828688
the lambda is 200.0
the regulation term lambda/alpha is 2004.2411148392284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05976464538408329
the lambda is 200.0
the regulation term lambda/alpha is 3346.4600804485763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5112016484297592
the lambda is 200.0
the regulation term lambda/alpha is 391.23504514184026
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09097067466460503
the lambda is 200.0
the regulation term lambda/alpha is 2198.5106820123015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07715618281149894
the lambda is 200.0
the regulation term lambda/alpha is 2592.1448251091174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1029581033647808
the lambda is 200.0
the regulation term lambda/alpha is 181.33055044417594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.5792759265248466
the lambda is 200.0
the regulation term lambda/alpha is 77.54114166043001
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09019698767125563
the lambda is 200.0
the regulation term lambda/alpha is 2217.3689517098683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07959618007233177
the lambda is 200.0
the regulation term lambda/alpha is 2512.683395336977
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07926173957143395
the lambda is 200.0
the regulation term lambda/alpha is 2523.2855231464073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19572940276963258
the lambda is 200.0
the regulation term lambda/alpha is 1021.818884490205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16689744211982996
the lambda is 200.0
the regulation term lambda/alpha is 1198.3407142717194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 275849290.91062576
the lambda is 200.0
the regulation term lambda/alpha is 7.250335838811322e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.766689197412064
the lambda is 200.0
the regulation term lambda/alpha is 29.556551832835837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11421526640522785
the lambda is 200.0
the regulation term lambda/alpha is 1751.0793985316627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06342586546157897
the lambda is 200.0
the regulation term lambda/alpha is 3153.2876775824616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 25.67691627112242
the lambda is 200.0
the regulation term lambda/alpha is 7.789097331167072
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22742279940267343
the lambda is 200.0
the regulation term lambda/alpha is 879.4193041564017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06917470455969087
the lambda is 200.0
the regulation term lambda/alpha is 2891.2302737400196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.1461914166357685
the lambda is 200.0
the regulation term lambda/alpha is 32.54047692993488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 12.524485921836042
the lambda is 200.0
the regulation term lambda/alpha is 15.968719295001671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07106301440699458
the lambda is 200.0
the regulation term lambda/alpha is 2814.403549708052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14767376788523504
the lambda is 200.0
the regulation term lambda/alpha is 1354.3366764734437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.680781446686278
the lambda is 200.0
the regulation term lambda/alpha is 54.336287795640615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05973071557822878
the lambda is 200.0
the regulation term lambda/alpha is 3348.3610243721555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 497541618.9036585
the lambda is 200.0
the regulation term lambda/alpha is 4.0197642247638186e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12316020377884952
the lambda is 200.0
the regulation term lambda/alpha is 1623.901178006546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13605435004371133
the lambda is 200.0
the regulation term lambda/alpha is 1470.0007749531294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05636073197623065
the lambda is 200.0
the regulation term lambda/alpha is 3548.5699526462363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06513321850130421
the lambda is 200.0
the regulation term lambda/alpha is 3070.6297738994003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0748313753184026
the lambda is 200.0
the regulation term lambda/alpha is 2672.6757212334146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7359250816357367
the lambda is 200.0
the regulation term lambda/alpha is 271.76679391801827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.604414065293217
the lambda is 200.0
the regulation term lambda/alpha is 30.28277724908524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 43721.378626161364
the lambda is 200.0
the regulation term lambda/alpha is 0.004574421170706793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6821395776181742
the lambda is 200.0
the regulation term lambda/alpha is 118.89619783109201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.4116248785140866
the lambda is 200.0
the regulation term lambda/alpha is 58.62309225717361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 1.498356566299861
the lambda is 200.0
the regulation term lambda/alpha is 133.4795765562619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.81601695279282
the lambda is 200.0
the regulation term lambda/alpha is 245.09294729171924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07805334856908001
the lambda is 200.0
the regulation term lambda/alpha is 2562.350029390383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10952869418450965
the lambda is 200.0
the regulation term lambda/alpha is 1826.0055183629265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06339827999760023
the lambda is 200.0
the regulation term lambda/alpha is 3154.659716439791
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5341366250145645
the lambda is 200.0
the regulation term lambda/alpha is 374.43603496492403
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10191953698305495
the lambda is 200.0
the regulation term lambda/alpha is 1962.3323056623758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2983.5009199546307
the lambda is 200.0
the regulation term lambda/alpha is 0.0670353404828316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07297042544689623
the lambda is 200.0
the regulation term lambda/alpha is 2740.836424827326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05822831708068866
the lambda is 200.0
the regulation term lambda/alpha is 3434.754944451756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07684482238908825
the lambda is 200.0
the regulation term lambda/alpha is 2602.647696774421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.368057248738556
the lambda is 200.0
the regulation term lambda/alpha is 45.786945685695315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09199407341250256
the lambda is 200.0
the regulation term lambda/alpha is 2174.053094737935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499987949.25063455
the lambda is 200.0
the regulation term lambda/alpha is 4.0000964083185085e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06636726201471113
the lambda is 200.0
the regulation term lambda/alpha is 3013.5339914379397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 49.15546046825762
the lambda is 200.0
the regulation term lambda/alpha is 4.068723964637682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07384031928327726
the lambda is 200.0
the regulation term lambda/alpha is 2708.5473348609194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 4672375.817152733
the lambda is 200.0
the regulation term lambda/alpha is 4.280477594841175e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 336.77240499531285
the lambda is 200.0
the regulation term lambda/alpha is 0.5938728857632607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.170796101513194
the lambda is 200.0
the regulation term lambda/alpha is 24.47741903178332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.240834185465864
the lambda is 200.0
the regulation term lambda/alpha is 38.161863726703984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26105981278588025
the lambda is 200.0
the regulation term lambda/alpha is 766.1079576581128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6039843710075815
the lambda is 200.0
the regulation term lambda/alpha is 331.1343961870323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9992372
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920061026e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2933080069602503
the lambda is 200.0
the regulation term lambda/alpha is 154.64220349959294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09969677065747895
the lambda is 200.0
the regulation term lambda/alpha is 2006.0830323895411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06634907949384225
the lambda is 200.0
the regulation term lambda/alpha is 3014.359830245447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06192232122121217
the lambda is 200.0
the regulation term lambda/alpha is 3229.853081339073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10235746666880244
the lambda is 200.0
the regulation term lambda/alpha is 1953.9365960193118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12602136996802343
the lambda is 200.0
the regulation term lambda/alpha is 1587.0324219673842
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.141844639565384
the lambda is 200.0
the regulation term lambda/alpha is 1409.9933604315656
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.2764535632577685
the lambda is 200.0
the regulation term lambda/alpha is 27.48591717947517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 86.12024553832808
the lambda is 200.0
the regulation term lambda/alpha is 2.3223342983966457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06913304837276311
the lambda is 200.0
the regulation term lambda/alpha is 2892.972387411685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0832018037674586
the lambda is 200.0
the regulation term lambda/alpha is 2403.794039838146
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7514545674425526
the lambda is 200.0
the regulation term lambda/alpha is 114.19080101634435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0800472434892921
the lambda is 200.0
the regulation term lambda/alpha is 2498.5245122994643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.2469560709586194
the lambda is 200.0
the regulation term lambda/alpha is 89.00930578258878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499997083.8973071
the lambda is 200.0
the regulation term lambda/alpha is 4.0000233289576024e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.25129216090262957
the lambda is 200.0
the regulation term lambda/alpha is 795.8863471172735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.5050754794015786
the lambda is 200.0
the regulation term lambda/alpha is 57.06011216458768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.0510470951936326
the lambda is 200.0
the regulation term lambda/alpha is 65.55126609322532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06069509560511161
the lambda is 200.0
the regulation term lambda/alpha is 3295.1591558767796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11137051186151611
the lambda is 200.0
the regulation term lambda/alpha is 1795.8074956923103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 347368786.1638096
the lambda is 200.0
the regulation term lambda/alpha is 5.757569705923015e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1623.7290640582169
the lambda is 200.0
the regulation term lambda/alpha is 0.12317325865938263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 17.44545298545574
the lambda is 200.0
the regulation term lambda/alpha is 11.4643053503248
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7783438424636169
the lambda is 200.0
the regulation term lambda/alpha is 256.9558453330333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31049116238991364
the lambda is 200.0
the regulation term lambda/alpha is 644.1407171159376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 2357465.7086299965
the lambda is 200.0
the regulation term lambda/alpha is 8.483686497235492e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.078978159978438
the lambda is 200.0
the regulation term lambda/alpha is 39.37799960944291
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 22.736796865410035
the lambda is 200.0
the regulation term lambda/alpha is 8.796313798460512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 108602.19839173471
the lambda is 200.0
the regulation term lambda/alpha is 0.001841583346946513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09017473914390293
the lambda is 200.0
the regulation term lambda/alpha is 2217.91603611778
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059347859753358274
the lambda is 200.0
the regulation term lambda/alpha is 3369.961458276223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.62908433919572
the lambda is 200.0
the regulation term lambda/alpha is 317.9223953591002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07391413777491308
the lambda is 200.0
the regulation term lambda/alpha is 2705.8422924319257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07253400374795935
the lambda is 200.0
the regulation term lambda/alpha is 2757.3274556159704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.23901332190715685
the lambda is 200.0
the regulation term lambda/alpha is 836.7734417652614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0786666334481866
the lambda is 200.0
the regulation term lambda/alpha is 2542.3739549211678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36778736407780555
the lambda is 200.0
the regulation term lambda/alpha is 543.7924723202017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061882154429734444
the lambda is 200.0
the regulation term lambda/alpha is 3231.949531218968
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4582797156174428
the lambda is 200.0
the regulation term lambda/alpha is 436.41468994659493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1408451988822834
the lambda is 200.0
the regulation term lambda/alpha is 1419.9987048700002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1331295125963195
the lambda is 200.0
the regulation term lambda/alpha is 1502.2964938394073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06931075399691913
the lambda is 200.0
the regulation term lambda/alpha is 2885.5551046074324
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05697590947952525
the lambda is 200.0
the regulation term lambda/alpha is 3510.2555067044887
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08674424079653255
the lambda is 200.0
the regulation term lambda/alpha is 2305.6285715742256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06877065415924345
the lambda is 200.0
the regulation term lambda/alpha is 2908.2172104526658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9714331301964066
the lambda is 200.0
the regulation term lambda/alpha is 205.88138677086658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06812499366269123
the lambda is 200.0
the regulation term lambda/alpha is 2935.78008961387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 10.365520129928244
the lambda is 200.0
the regulation term lambda/alpha is 19.29473846879544
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 771470.2778045363
the lambda is 200.0
the regulation term lambda/alpha is 0.0002592452434709002
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0750700791178064
the lambda is 200.0
the regulation term lambda/alpha is 2664.1772907437976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0768927633191754
the lambda is 200.0
the regulation term lambda/alpha is 2601.0250037421183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25850105465671597
the lambda is 200.0
the regulation term lambda/alpha is 773.6912341251212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09270746109279529
the lambda is 200.0
the regulation term lambda/alpha is 2157.3236678309045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0641985289203093
the lambda is 200.0
the regulation term lambda/alpha is 3115.336182364292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09395216684416004
the lambda is 200.0
the regulation term lambda/alpha is 2128.742813688834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.526036470862499
the lambda is 200.0
the regulation term lambda/alpha is 44.18877339755224
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.217981200879195
the lambda is 200.0
the regulation term lambda/alpha is 917.5103137028767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11539742902290558
the lambda is 200.0
the regulation term lambda/alpha is 1733.1408653853234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 71.95167440774252
the lambda is 200.0
the regulation term lambda/alpha is 2.779643443273067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 13.860457990279206
the lambda is 200.0
the regulation term lambda/alpha is 14.429537619916063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17521225393168718
the lambda is 200.0
the regulation term lambda/alpha is 1141.4726739259756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 155093688.95605344
the lambda is 200.0
the regulation term lambda/alpha is 1.2895431229098625e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05436409209714518
the lambda is 200.0
the regulation term lambda/alpha is 3678.898925463755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 266.19074531180564
the lambda is 200.0
the regulation term lambda/alpha is 0.751340921960783
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5979283771078967
the lambda is 200.0
the regulation term lambda/alpha is 334.4882224312124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07123128486812128
the lambda is 200.0
the regulation term lambda/alpha is 2807.7550527171193
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2977176433270139
the lambda is 200.0
the regulation term lambda/alpha is 671.7774525049543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.055507349878297134
the lambda is 200.0
the regulation term lambda/alpha is 3603.126440705795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10310370524108822
the lambda is 200.0
the regulation term lambda/alpha is 1939.7944965444103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 19.56127434863273
the lambda is 200.0
the regulation term lambda/alpha is 10.224282755585367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28760760448005374
the lambda is 200.0
the regulation term lambda/alpha is 695.391905097803
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2723428691762346
the lambda is 200.0
the regulation term lambda/alpha is 157.1903335533196
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 12863016.378944347
the lambda is 200.0
the regulation term lambda/alpha is 1.5548452564157723e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 48.66305086066502
the lambda is 200.0
the regulation term lambda/alpha is 4.10989439549633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.295593739780491
the lambda is 200.0
the regulation term lambda/alpha is 19.42578592890983
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 25863924.49221806
the lambda is 200.0
the regulation term lambda/alpha is 7.732778529421396e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 176.0283851122429
the lambda is 200.0
the regulation term lambda/alpha is 1.1361803942726159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08473450727399225
the lambda is 200.0
the regulation term lambda/alpha is 2360.3134830688564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06578287114375436
the lambda is 200.0
the regulation term lambda/alpha is 3040.3051208109005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14535972376960724
the lambda is 200.0
the regulation term lambda/alpha is 1375.8969459586804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1374578363721377
the lambda is 200.0
the regulation term lambda/alpha is 1454.9916198196424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.199259370863395
the lambda is 200.0
the regulation term lambda/alpha is 62.51446876157006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 18172.741077891525
the lambda is 200.0
the regulation term lambda/alpha is 0.011005494390899274
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14070245293691924
the lambda is 200.0
the regulation term lambda/alpha is 1421.4393269296127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 53.4115463004573
the lambda is 200.0
the regulation term lambda/alpha is 3.744508703697418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1371868200801894
the lambda is 200.0
the regulation term lambda/alpha is 1457.8659953127758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07781519177542906
the lambda is 200.0
the regulation term lambda/alpha is 2570.1922135871678
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  60  iterations
the alpha is 372418.68489189964
the lambda is 200.0
the regulation term lambda/alpha is 0.0005370299829560194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1799030466406443
the lambda is 200.0
the regulation term lambda/alpha is 1111.7099111695384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06196452445018667
the lambda is 200.0
the regulation term lambda/alpha is 3227.6532705545114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999793.1938644
the lambda is 200.0
the regulation term lambda/alpha is 4.000001654449769e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.92562681909269
the lambda is 200.0
the regulation term lambda/alpha is 13.399772245689695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.606740060020169
the lambda is 200.0
the regulation term lambda/alpha is 14.698597835909826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.091143805679657
the lambda is 200.0
the regulation term lambda/alpha is 2194.3345300166607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.62154347319115
the lambda is 200.0
the regulation term lambda/alpha is 123.33927724207471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06801675706666119
the lambda is 200.0
the regulation term lambda/alpha is 2940.451862531258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06444351909842364
the lambda is 200.0
the regulation term lambda/alpha is 3103.4928383495467
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13379318325669565
the lambda is 200.0
the regulation term lambda/alpha is 1494.844469140703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3474832849868317
the lambda is 200.0
the regulation term lambda/alpha is 575.5672535661082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499952837.2302786
the lambda is 200.0
the regulation term lambda/alpha is 4.000377337750358e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1489687606130738
the lambda is 200.0
the regulation term lambda/alpha is 1342.563361451821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06794729423383292
the lambda is 200.0
the regulation term lambda/alpha is 2943.4579000559265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08012325052479778
the lambda is 200.0
the regulation term lambda/alpha is 2496.1543458362426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16429451246736346
the lambda is 200.0
the regulation term lambda/alpha is 1217.3261114836646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24336060602096415
the lambda is 200.0
the regulation term lambda/alpha is 821.8256983744161
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 302675087.7679213
the lambda is 200.0
the regulation term lambda/alpha is 6.607745667966955e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6787280632240189
the lambda is 200.0
the regulation term lambda/alpha is 294.66882369646265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.051741585792647364
the lambda is 200.0
the regulation term lambda/alpha is 3865.3627819118874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999933.31693566
the lambda is 200.0
the regulation term lambda/alpha is 4.0000005334645857e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 171.43857269123424
the lambda is 200.0
the regulation term lambda/alpha is 1.1665986064886675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.821261776266682
the lambda is 200.0
the regulation term lambda/alpha is 41.482916564399645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30238098598880525
the lambda is 200.0
the regulation term lambda/alpha is 661.4172493220337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.585882262696356
the lambda is 200.0
the regulation term lambda/alpha is 77.34304182567679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4074503349291535
the lambda is 200.0
the regulation term lambda/alpha is 490.8573704689076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15582908362030773
the lambda is 200.0
the regulation term lambda/alpha is 1283.4574609147987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  25  iterations
the alpha is 2187635.521982403
the lambda is 200.0
the regulation term lambda/alpha is 9.142290751375392e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.085576217281247
the lambda is 200.0
the regulation term lambda/alpha is 2337.0979269006275
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 242471744.33848205
the lambda is 200.0
the regulation term lambda/alpha is 8.248383767174414e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08439483661074905
the lambda is 200.0
the regulation term lambda/alpha is 2369.8132259258
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11154363842772042
the lambda is 200.0
the regulation term lambda/alpha is 1793.0202279496089
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6566316688211817
the lambda is 200.0
the regulation term lambda/alpha is 304.5847611325998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06802910418602653
the lambda is 200.0
the regulation term lambda/alpha is 2939.9181775655493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18710659472447344
the lambda is 200.0
the regulation term lambda/alpha is 1068.9094112076216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06540102293407016
the lambda is 200.0
the regulation term lambda/alpha is 3058.0561438865743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 298.403805820126
the lambda is 200.0
the regulation term lambda/alpha is 0.6702327386553422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07267027342679065
the lambda is 200.0
the regulation term lambda/alpha is 2752.1569765591103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15820508241465817
the lambda is 200.0
the regulation term lambda/alpha is 1264.1818894022422
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.673905156509321
the lambda is 200.0
the regulation term lambda/alpha is 119.48108243902546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8291157491469048
the lambda is 200.0
the regulation term lambda/alpha is 241.22084305573057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 444238107.8727234
the lambda is 200.0
the regulation term lambda/alpha is 4.502090128145897e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9287413488214876
the lambda is 200.0
the regulation term lambda/alpha is 215.34520914115322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35916604523901935
the lambda is 200.0
the regulation term lambda/alpha is 556.8455110140023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12557673184662843
the lambda is 200.0
the regulation term lambda/alpha is 1592.6517361852314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059832003807460316
the lambda is 200.0
the regulation term lambda/alpha is 3342.6926606636976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 94309.1040759268
the lambda is 200.0
the regulation term lambda/alpha is 0.0021206860351359407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12890722845691835
the lambda is 200.0
the regulation term lambda/alpha is 1551.5033749006661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 8525.637340452353
the lambda is 200.0
the regulation term lambda/alpha is 0.023458656756491638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05503934064641228
the lambda is 200.0
the regulation term lambda/alpha is 3633.764461039868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1474682009944981
the lambda is 200.0
the regulation term lambda/alpha is 1356.224587071906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 346.4581047296776
the lambda is 200.0
the regulation term lambda/alpha is 0.5772703748871718
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.193977029864157
the lambda is 200.0
the regulation term lambda/alpha is 47.68743333019113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 13.312218836033056
the lambda is 200.0
the regulation term lambda/alpha is 15.023791485356812
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08938320678792179
the lambda is 200.0
the regulation term lambda/alpha is 2237.5567759001647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8602053725447928
the lambda is 200.0
the regulation term lambda/alpha is 232.50261668132694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499668732.14807904
the lambda is 200.0
the regulation term lambda/alpha is 4.002651899793664e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.7497256622744954
the lambda is 200.0
the regulation term lambda/alpha is 53.337235310885305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17529375704251626
the lambda is 200.0
the regulation term lambda/alpha is 1140.9419443927568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07186164981893586
the lambda is 200.0
the regulation term lambda/alpha is 2783.1256379991864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13678736140929193
the lambda is 200.0
the regulation term lambda/alpha is 1462.1233858116811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2386446903827328
the lambda is 200.0
the regulation term lambda/alpha is 838.0659954313027
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4687185188740515
the lambda is 200.0
the regulation term lambda/alpha is 136.17313149515127
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5230308120158091
the lambda is 200.0
the regulation term lambda/alpha is 382.386649897702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27447491427275017
the lambda is 200.0
the regulation term lambda/alpha is 728.6640403182957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2682408856914
the lambda is 200.0
the regulation term lambda/alpha is 88.17405649534285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13421309236028603
the lambda is 200.0
the regulation term lambda/alpha is 1490.1675871018115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05763122573905289
the lambda is 200.0
the regulation term lambda/alpha is 3470.3409034813076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09052119027130597
the lambda is 200.0
the regulation term lambda/alpha is 2209.4274213647564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3378701763894953
the lambda is 200.0
the regulation term lambda/alpha is 149.4913359528943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 227586.39803267253
the lambda is 200.0
the regulation term lambda/alpha is 0.00087878714074682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7527920371400426
the lambda is 200.0
the regulation term lambda/alpha is 265.67762427433036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06775661037405846
the lambda is 200.0
the regulation term lambda/alpha is 2951.7415185894943
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10199003224981854
the lambda is 200.0
the regulation term lambda/alpha is 1960.975946258276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09978215537061602
the lambda is 200.0
the regulation term lambda/alpha is 2004.3664045655228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13271299032309455
the lambda is 200.0
the regulation term lambda/alpha is 1507.011480286088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5621550612474064
the lambda is 200.0
the regulation term lambda/alpha is 355.7737247018742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21041501525535147
the lambda is 200.0
the regulation term lambda/alpha is 950.5025093256191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1161350.4355679995
the lambda is 200.0
the regulation term lambda/alpha is 0.00017221330777921734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2915349635772477
the lambda is 200.0
the regulation term lambda/alpha is 686.0240622459894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.4377744382072315
the lambda is 200.0
the regulation term lambda/alpha is 82.04204493467509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3626728101801024
the lambda is 200.0
the regulation term lambda/alpha is 551.4612465728559
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06323334122672974
the lambda is 200.0
the regulation term lambda/alpha is 3162.888376922534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07527039914833114
the lambda is 200.0
the regulation term lambda/alpha is 2657.0870124638404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16558836471194138
the lambda is 200.0
the regulation term lambda/alpha is 1207.8143313264875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  30  iterations
the alpha is 4093.039365577097
the lambda is 200.0
the regulation term lambda/alpha is 0.04886344404161406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10682853634669934
the lambda is 200.0
the regulation term lambda/alpha is 1872.158945910517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 3870.495401858177
the lambda is 200.0
the regulation term lambda/alpha is 0.051672971864010604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 30.758583964369844
the lambda is 200.0
the regulation term lambda/alpha is 6.502249916045426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09911685180142826
the lambda is 200.0
the regulation term lambda/alpha is 2017.8203440186144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 946.308706585533
the lambda is 200.0
the regulation term lambda/alpha is 0.21134752180568978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 20.041968913718556
the lambda is 200.0
the regulation term lambda/alpha is 9.979059485672673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.23933990512798553
the lambda is 200.0
the regulation term lambda/alpha is 835.6316506979947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09476649590508278
the lambda is 200.0
the regulation term lambda/alpha is 2110.450514075334
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3239354264870006
the lambda is 200.0
the regulation term lambda/alpha is 617.407000428914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09295696272228479
the lambda is 200.0
the regulation term lambda/alpha is 2151.5332917827095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.566751473182229
the lambda is 200.0
the regulation term lambda/alpha is 43.7948071346731
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06400470879327798
the lambda is 200.0
the regulation term lambda/alpha is 3124.770095368433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5410893088474792
the lambda is 200.0
the regulation term lambda/alpha is 369.6247490566765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.181082484511656
the lambda is 200.0
the regulation term lambda/alpha is 12.360112507394835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 50811.207976910875
the lambda is 200.0
the regulation term lambda/alpha is 0.003936139445668799
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1261393057680532
the lambda is 200.0
the regulation term lambda/alpha is 1585.548602651761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9138524317786608
the lambda is 200.0
the regulation term lambda/alpha is 218.85371537583313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06772005442006805
the lambda is 200.0
the regulation term lambda/alpha is 2953.3348978043987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 19701193.356752712
the lambda is 200.0
the regulation term lambda/alpha is 1.0151669311516538e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0610234353486292
the lambda is 200.0
the regulation term lambda/alpha is 3277.4293819643617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 74.09781945757325
the lambda is 200.0
the regulation term lambda/alpha is 2.6991347581357035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 62.57378677328192
the lambda is 200.0
the regulation term lambda/alpha is 3.1962265720731007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1997971252599645
the lambda is 200.0
the regulation term lambda/alpha is 1001.0154036989849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15392147956211744
the lambda is 200.0
the regulation term lambda/alpha is 1299.3638091900414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.45772206149442607
the lambda is 200.0
the regulation term lambda/alpha is 436.94638477117735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39654887979951003
the lambda is 200.0
the regulation term lambda/alpha is 504.3514436382153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34560286017833164
the lambda is 200.0
the regulation term lambda/alpha is 578.6989144036588
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 521712.98726766295
the lambda is 200.0
the regulation term lambda/alpha is 0.00038335254226169133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0846209077677472
the lambda is 200.0
the regulation term lambda/alpha is 2363.4820906072687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06798854368005024
the lambda is 200.0
the regulation term lambda/alpha is 2941.6720696531947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13481634896880212
the lambda is 200.0
the regulation term lambda/alpha is 1483.4996017158278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 228.35310585810066
the lambda is 200.0
the regulation term lambda/alpha is 0.8758365656926104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.763145113467529
the lambda is 200.0
the regulation term lambda/alpha is 262.07335468775136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 156.1304540758471
the lambda is 200.0
the regulation term lambda/alpha is 1.2809800700562965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9042475508193261
the lambda is 200.0
the regulation term lambda/alpha is 221.17837070034946
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 44.38712849892044
the lambda is 200.0
the regulation term lambda/alpha is 4.505810733056641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499787547.67729396
the lambda is 200.0
the regulation term lambda/alpha is 4.0017003410644656e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1079100369987728
the lambda is 200.0
the regulation term lambda/alpha is 1853.3957133410536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 9.477615649614913
the lambda is 200.0
the regulation term lambda/alpha is 21.10235394575494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16282604985630705
the lambda is 200.0
the regulation term lambda/alpha is 1228.3046857459155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14401394645412374
the lambda is 200.0
the regulation term lambda/alpha is 1388.7543875044828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7309886451043617
the lambda is 200.0
the regulation term lambda/alpha is 273.6020611803709
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08304883707097017
the lambda is 200.0
the regulation term lambda/alpha is 2408.221560394495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5710389974816046
the lambda is 200.0
the regulation term lambda/alpha is 350.23877682967316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25578283686424663
the lambda is 200.0
the regulation term lambda/alpha is 781.913291962382
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06884465055930114
the lambda is 200.0
the regulation term lambda/alpha is 2905.091366942516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13554096322469608
the lambda is 200.0
the regulation term lambda/alpha is 1475.56867858793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 448503008.51106745
the lambda is 200.0
the regulation term lambda/alpha is 4.4592788945598504e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05697165205148081
the lambda is 200.0
the regulation term lambda/alpha is 3510.5178241851877
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07051220410445971
the lambda is 200.0
the regulation term lambda/alpha is 2836.3884314793463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.053450259956176846
the lambda is 200.0
the regulation term lambda/alpha is 3741.796581793565
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054301466759517386
the lambda is 200.0
the regulation term lambda/alpha is 3683.141762739698
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 31.297012673504767
the lambda is 200.0
the regulation term lambda/alpha is 6.390386267418895
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0708152680464655
the lambda is 200.0
the regulation term lambda/alpha is 2824.249706557205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 42.7296792195587
the lambda is 200.0
the regulation term lambda/alpha is 4.680587443035468
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1532884594718544
the lambda is 200.0
the regulation term lambda/alpha is 173.41715193403522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0941947133686211
the lambda is 200.0
the regulation term lambda/alpha is 2123.2614108322728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20189509278937048
the lambda is 200.0
the regulation term lambda/alpha is 990.6134777067239
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11670185470271359
the lambda is 200.0
the regulation term lambda/alpha is 1713.768821493713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.25662025770958
the lambda is 200.0
the regulation term lambda/alpha is 779.361698819359
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11231697685657066
the lambda is 200.0
the regulation term lambda/alpha is 1780.6747082892107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 654.1129422497961
the lambda is 200.0
the regulation term lambda/alpha is 0.3057575948766703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9260326274368889
the lambda is 200.0
the regulation term lambda/alpha is 103.84040080678929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 112997384.58055048
the lambda is 200.0
the regulation term lambda/alpha is 1.7699524705143018e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3513766368509256
the lambda is 200.0
the regulation term lambda/alpha is 569.1898066770206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11384684069160587
the lambda is 200.0
the regulation term lambda/alpha is 1756.7461581280959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 197.59174870248606
the lambda is 200.0
the regulation term lambda/alpha is 1.0121880155083807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06758361385497208
the lambda is 200.0
the regulation term lambda/alpha is 2959.2972111432323
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28654325182588
the lambda is 200.0
the regulation term lambda/alpha is 697.9749085891278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1262866577933057
the lambda is 200.0
the regulation term lambda/alpha is 1583.6985750889178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06445396238562325
the lambda is 200.0
the regulation term lambda/alpha is 3102.989988472934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3702499391380522
the lambda is 200.0
the regulation term lambda/alpha is 540.1756458504847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 4587.377733030364
the lambda is 200.0
the regulation term lambda/alpha is 0.04359789222499507
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 495723427.3445924
the lambda is 200.0
the regulation term lambda/alpha is 4.0345077308798224e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 740.5447547746642
the lambda is 200.0
the regulation term lambda/alpha is 0.2700714557904833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10787022941722917
the lambda is 200.0
the regulation term lambda/alpha is 1854.0796759263753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.053618950090432
the lambda is 200.0
the regulation term lambda/alpha is 3730.0245465956796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20230656161952518
the lambda is 200.0
the regulation term lambda/alpha is 988.5986811250191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08112563145559228
the lambda is 200.0
the regulation term lambda/alpha is 2465.3120895518564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.060001274612215834
the lambda is 200.0
the regulation term lambda/alpha is 3333.2625230478257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8423184938006973
the lambda is 200.0
the regulation term lambda/alpha is 237.43987751896896
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11609457228277388
the lambda is 200.0
the regulation term lambda/alpha is 1722.7334238577148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 587.6718797056731
the lambda is 200.0
the regulation term lambda/alpha is 0.3403259657415752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.298003821285526
the lambda is 200.0
the regulation term lambda/alpha is 87.0320571913227
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23929292008979386
the lambda is 200.0
the regulation term lambda/alpha is 835.7957265302738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12899769614762172
the lambda is 200.0
the regulation term lambda/alpha is 1550.4152862631363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3697373753135722
the lambda is 200.0
the regulation term lambda/alpha is 146.0133917673191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06208102577738658
the lambda is 200.0
the regulation term lambda/alpha is 3221.5962525679033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056264207463813255
the lambda is 200.0
the regulation term lambda/alpha is 3554.65773029206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9390741116150672
the lambda is 200.0
the regulation term lambda/alpha is 212.97573591505986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2706961692378842
the lambda is 200.0
the regulation term lambda/alpha is 157.3940370969659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07908049631774937
the lambda is 200.0
the regulation term lambda/alpha is 2529.068598613621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10699055056381807
the lambda is 200.0
the regulation term lambda/alpha is 1869.323963154142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06007841447030278
the lambda is 200.0
the regulation term lambda/alpha is 3328.9826598014088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0794928578929433
the lambda is 200.0
the regulation term lambda/alpha is 2515.949297852006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07830346740130155
the lambda is 200.0
the regulation term lambda/alpha is 2554.1653088618605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08667240816611364
the lambda is 200.0
the regulation term lambda/alpha is 2307.5394376568634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07313507313704595
the lambda is 200.0
the regulation term lambda/alpha is 2734.666028503521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.41173262936249
the lambda is 200.0
the regulation term lambda/alpha is 58.62124079675365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 223346315.01715204
the lambda is 200.0
the regulation term lambda/alpha is 8.954703371069313e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06465515347037089
the lambda is 200.0
the regulation term lambda/alpha is 3093.334239654272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08664085781739113
the lambda is 200.0
the regulation term lambda/alpha is 2308.3797302830335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06444218269058902
the lambda is 200.0
the regulation term lambda/alpha is 3103.55719886576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 472201222.7502884
the lambda is 200.0
the regulation term lambda/alpha is 4.2354824673074786e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  50  iterations
the alpha is 44944351.606237724
the lambda is 200.0
the regulation term lambda/alpha is 4.449947387209441e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07089762444312754
the lambda is 200.0
the regulation term lambda/alpha is 2820.968989735833
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5874066525048058
the lambda is 200.0
the regulation term lambda/alpha is 340.47963050327166
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 5649.6286101653095
the lambda is 200.0
the regulation term lambda/alpha is 0.03540055706319215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.225669824429673
the lambda is 200.0
the regulation term lambda/alpha is 163.17608218270666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.79280288117865
the lambda is 200.0
the regulation term lambda/alpha is 14.500315978046459
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1161.6165149950098
the lambda is 200.0
the regulation term lambda/alpha is 0.17217386066593518
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  31  iterations
the alpha is 286965.7558927617
the lambda is 200.0
the regulation term lambda/alpha is 0.0006969472694670211
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6253803308839562
the lambda is 200.0
the regulation term lambda/alpha is 319.80538901392384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10552134588684313
the lambda is 200.0
the regulation term lambda/alpha is 1895.3511094757264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5879701882814765
the lambda is 200.0
the regulation term lambda/alpha is 125.94694880036936
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3620321672590635
the lambda is 200.0
the regulation term lambda/alpha is 552.4370983777353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499987268.5535399
the lambda is 200.0
the regulation term lambda/alpha is 4.0001018541651826e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12679154559417968
the lambda is 200.0
the regulation term lambda/alpha is 1577.3922390704015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.583374084522755
the lambda is 200.0
the regulation term lambda/alpha is 77.41813359444124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11063108969755607
the lambda is 200.0
the regulation term lambda/alpha is 1807.810087984862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08353033361993856
the lambda is 200.0
the regulation term lambda/alpha is 2394.339772542945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 23.21140896853734
the lambda is 200.0
the regulation term lambda/alpha is 8.61645237784128
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3062944039285969
the lambda is 200.0
the regulation term lambda/alpha is 652.9665492896952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999122.63636047
the lambda is 200.0
the regulation term lambda/alpha is 4.0000070189214326e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 11.956929575487283
the lambda is 200.0
the regulation term lambda/alpha is 16.726702180300276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1863.492626822812
the lambda is 200.0
the regulation term lambda/alpha is 0.10732535086065395
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41030346062282996
the lambda is 200.0
the regulation term lambda/alpha is 487.44409734298904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19845070944652338
the lambda is 200.0
the regulation term lambda/alpha is 1007.8069287723766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.3516554761233963
the lambda is 200.0
the regulation term lambda/alpha is 85.04647131802294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09718927229367258
the lambda is 200.0
the regulation term lambda/alpha is 2057.8402871015305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07410278966862575
the lambda is 200.0
the regulation term lambda/alpha is 2698.953722179202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0694006983926613
the lambda is 200.0
the regulation term lambda/alpha is 2881.815379845641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 15973690.30352951
the lambda is 200.0
the regulation term lambda/alpha is 1.252058830487082e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07175395834446284
the lambda is 200.0
the regulation term lambda/alpha is 2787.302674507207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1666188677195807
the lambda is 200.0
the regulation term lambda/alpha is 1200.3442511480735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 38.932379077489514
the lambda is 200.0
the regulation term lambda/alpha is 5.137112211969571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999966.67356867
the lambda is 200.0
the regulation term lambda/alpha is 4.000000266611468e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06700339023217325
the lambda is 200.0
the regulation term lambda/alpha is 2984.92358829875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 57.99866147854132
the lambda is 200.0
the regulation term lambda/alpha is 3.448355443064788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11924431008535757
the lambda is 200.0
the regulation term lambda/alpha is 1677.2288745419871
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12673152765435933
the lambda is 200.0
the regulation term lambda/alpha is 1578.1392657513695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19883420060261398
the lambda is 200.0
the regulation term lambda/alpha is 1005.8631734070536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.19510944441397615
the lambda is 200.0
the regulation term lambda/alpha is 1025.0657040242872
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6446097253808448
the lambda is 200.0
the regulation term lambda/alpha is 310.26525372672137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07345701722215058
the lambda is 200.0
the regulation term lambda/alpha is 2722.6806582025365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08684923344392528
the lambda is 200.0
the regulation term lambda/alpha is 2302.8412810244454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 121912885.78279355
the lambda is 200.0
the regulation term lambda/alpha is 1.6405156740882222e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09549338490830045
the lambda is 200.0
the regulation term lambda/alpha is 2094.385911569207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 6325713.156431021
the lambda is 200.0
the regulation term lambda/alpha is 3.1616988480843534e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24521371668056327
the lambda is 200.0
the regulation term lambda/alpha is 815.6150590080465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  26  iterations
the alpha is 28303178.529760364
the lambda is 200.0
the regulation term lambda/alpha is 7.066344148933768e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 497834883.3558306
the lambda is 200.0
the regulation term lambda/alpha is 4.017396263030623e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5204412276767545
the lambda is 200.0
the regulation term lambda/alpha is 384.2893094630462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08681095780719691
the lambda is 200.0
the regulation term lambda/alpha is 2303.8566219277373
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5469352485441183
the lambda is 200.0
the regulation term lambda/alpha is 365.67399986082097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499854705.47448933
the lambda is 200.0
the regulation term lambda/alpha is 4.001162694070252e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0725536093321901
the lambda is 200.0
the regulation term lambda/alpha is 2756.5823649694757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07816989875643367
the lambda is 200.0
the regulation term lambda/alpha is 2558.5296025925745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.059362427220493466
the lambda is 200.0
the regulation term lambda/alpha is 3369.1344738504013
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38471908778557806
the lambda is 200.0
the regulation term lambda/alpha is 519.8598311073906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08518454263604856
the lambda is 200.0
the regulation term lambda/alpha is 2347.8437966674437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2087502671364155
the lambda is 200.0
the regulation term lambda/alpha is 958.0826062814218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.441630241949587
the lambda is 200.0
the regulation term lambda/alpha is 36.753691652585616
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.648821232704634
the lambda is 200.0
the regulation term lambda/alpha is 20.727920559052432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07788788927575645
the lambda is 200.0
the regulation term lambda/alpha is 2567.7932970030097
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06234107210858727
the lambda is 200.0
the regulation term lambda/alpha is 3208.1578522043205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2310151360845262
the lambda is 200.0
the regulation term lambda/alpha is 865.7441386300417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  23  iterations
the alpha is 157950700.58931494
the lambda is 200.0
the regulation term lambda/alpha is 1.2662178721195848e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 7338.700199179777
the lambda is 200.0
the regulation term lambda/alpha is 0.027252782450815114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25551079807553273
the lambda is 200.0
the regulation term lambda/alpha is 782.7457841561634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.446583537456154
the lambda is 200.0
the regulation term lambda/alpha is 44.97835210230145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.072437414245259
the lambda is 200.0
the regulation term lambda/alpha is 32.93570379676905
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1085675732306421
the lambda is 200.0
the regulation term lambda/alpha is 180.41299856638435
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10184178788596172
the lambda is 200.0
the regulation term lambda/alpha is 1963.8304094184975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11005157994878507
the lambda is 200.0
the regulation term lambda/alpha is 1817.3296566307763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17268545180044662
the lambda is 200.0
the regulation term lambda/alpha is 1158.175155548817
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 21394.11295796826
the lambda is 200.0
the regulation term lambda/alpha is 0.009348366085237004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06676882655439398
the lambda is 200.0
the regulation term lambda/alpha is 2995.409839007246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.24216261136698608
the lambda is 200.0
the regulation term lambda/alpha is 825.8913251348672
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22595053238305463
the lambda is 200.0
the regulation term lambda/alpha is 885.1494966205231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1281000484139158
the lambda is 200.0
the regulation term lambda/alpha is 1561.279659737221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 40.82410144455083
the lambda is 200.0
the regulation term lambda/alpha is 4.899066799342766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 113.88009057228636
the lambda is 200.0
the regulation term lambda/alpha is 1.7562332361603479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 82.61357444230741
the lambda is 200.0
the regulation term lambda/alpha is 2.42090965498253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  24  iterations
the alpha is 2444174.8880568454
the lambda is 200.0
the regulation term lambda/alpha is 8.182720515511184e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499994907.30914444
the lambda is 200.0
the regulation term lambda/alpha is 4.0000407419418166e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08653715953386078
the lambda is 200.0
the regulation term lambda/alpha is 2311.1458831941763
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.093635091774159
the lambda is 200.0
the regulation term lambda/alpha is 2135.9513427122533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 257.0864224644116
the lambda is 200.0
the regulation term lambda/alpha is 0.7779485127328571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.059328138378947064
the lambda is 200.0
the regulation term lambda/alpha is 3371.0816732953676
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07737211426151062
the lambda is 200.0
the regulation term lambda/alpha is 2584.9106219847945
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3808413909800257
the lambda is 200.0
the regulation term lambda/alpha is 525.1530026327669
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 710.4106766678567
the lambda is 200.0
the regulation term lambda/alpha is 0.2815273004314762
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06475622351338915
the lambda is 200.0
the regulation term lambda/alpha is 3088.5062338239586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11889327672291569
the lambda is 200.0
the regulation term lambda/alpha is 1682.1809063779606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.8432905297498252
the lambda is 200.0
the regulation term lambda/alpha is 108.5016153298115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1800581561054054
the lambda is 200.0
the regulation term lambda/alpha is 1110.7522387540207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07248599319950694
the lambda is 200.0
the regulation term lambda/alpha is 2759.153750567088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5233292597490969
the lambda is 200.0
the regulation term lambda/alpha is 382.168579864782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08198554696093088
the lambda is 200.0
the regulation term lambda/alpha is 2439.4543601118785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07078809126729216
the lambda is 200.0
the regulation term lambda/alpha is 2825.3339851304986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07345950964549255
the lambda is 200.0
the regulation term lambda/alpha is 2722.5882797908375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4037505910548068
the lambda is 200.0
the regulation term lambda/alpha is 495.35531199470404
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.057261533921121974
the lambda is 200.0
the regulation term lambda/alpha is 3492.746112521207
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.32796344982851
the lambda is 200.0
the regulation term lambda/alpha is 60.0968138668428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1064265964175243
the lambda is 200.0
the regulation term lambda/alpha is 1879.2295040177364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.638535130017257
the lambda is 200.0
the regulation term lambda/alpha is 18.79958072758421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3170280088710734
the lambda is 200.0
the regulation term lambda/alpha is 630.859086275038
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34325247197140746
the lambda is 200.0
the regulation term lambda/alpha is 582.661499424423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08248042117744643
the lambda is 200.0
the regulation term lambda/alpha is 2424.8178797453606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.2541748308340135
the lambda is 200.0
the regulation term lambda/alpha is 61.45951290169064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06376113549391377
the lambda is 200.0
the regulation term lambda/alpha is 3136.70699950271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06408248437756697
the lambda is 200.0
the regulation term lambda/alpha is 3120.977626610447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 363.63996716679634
the lambda is 200.0
the regulation term lambda/alpha is 0.5499945497142312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 866.7924854165941
the lambda is 200.0
the regulation term lambda/alpha is 0.23073573359819433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06082590812387616
the lambda is 200.0
the regulation term lambda/alpha is 3288.072569219784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1218650678013582
the lambda is 200.0
the regulation term lambda/alpha is 1641.1593872495346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11999644215580348
the lambda is 200.0
the regulation term lambda/alpha is 1666.7160826345155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 258.6176695988953
the lambda is 200.0
the regulation term lambda/alpha is 0.7733423640781825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13881597095185322
the lambda is 200.0
the regulation term lambda/alpha is 1440.7564102935085
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 339132834.8114674
the lambda is 200.0
the regulation term lambda/alpha is 5.897394161529216e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05651105784018965
the lambda is 200.0
the regulation term lambda/alpha is 3539.1303515426957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09243646018852777
the lambda is 200.0
the regulation term lambda/alpha is 2163.6484087782264
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 267.76191687860495
the lambda is 200.0
the regulation term lambda/alpha is 0.7469322087751331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 38947.55211583676
the lambda is 200.0
the regulation term lambda/alpha is 0.005135110915447661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5769910213562255
the lambda is 200.0
the regulation term lambda/alpha is 126.82380387175466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 902.3772746937693
the lambda is 200.0
the regulation term lambda/alpha is 0.22163678719399488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 672114.4289790078
the lambda is 200.0
the regulation term lambda/alpha is 0.00029756837731309386
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.286195151461818
the lambda is 200.0
the regulation term lambda/alpha is 698.8238584002793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0789384025007818
the lambda is 200.0
the regulation term lambda/alpha is 2533.6210724307375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.059647224144244976
the lambda is 200.0
the regulation term lambda/alpha is 3353.0479057389107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 47.77255839317745
the lambda is 200.0
the regulation term lambda/alpha is 4.1865038575904
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3431999250623598
the lambda is 200.0
the regulation term lambda/alpha is 582.7507099940648
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 38.7565969277593
the lambda is 200.0
the regulation term lambda/alpha is 5.160411797062363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07346740668741525
the lambda is 200.0
the regulation term lambda/alpha is 2722.295627650886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  31  iterations
the alpha is 32128669.767326415
the lambda is 200.0
the regulation term lambda/alpha is 6.224969830633701e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 197.2212042447541
the lambda is 200.0
the regulation term lambda/alpha is 1.0140897413434176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 72.25420558405597
the lambda is 200.0
the regulation term lambda/alpha is 2.7680049677846457
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99997586
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000193e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.197809134681691
the lambda is 200.0
the regulation term lambda/alpha is 90.99971277941113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.20594307644156
the lambda is 200.0
the regulation term lambda/alpha is 165.84530721810734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23949028990754007
the lambda is 200.0
the regulation term lambda/alpha is 835.1069267869437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09181114791801641
the lambda is 200.0
the regulation term lambda/alpha is 2178.3847009362285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 13.081603851144168
the lambda is 200.0
the regulation term lambda/alpha is 15.288645205572957
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12392820763817901
the lambda is 200.0
the regulation term lambda/alpha is 1613.8375904210632
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06850991050730114
the lambda is 200.0
the regulation term lambda/alpha is 2919.285670044568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09502451011855659
the lambda is 200.0
the regulation term lambda/alpha is 2104.7201374726537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 288141907.3440529
the lambda is 200.0
the regulation term lambda/alpha is 6.941024366899606e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10797285559019587
the lambda is 200.0
the regulation term lambda/alpha is 1852.3174079889793
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06701044357598818
the lambda is 200.0
the regulation term lambda/alpha is 2984.609403058271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5760205091660563
the lambda is 200.0
the regulation term lambda/alpha is 347.209859401627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06182273982945715
the lambda is 200.0
the regulation term lambda/alpha is 3235.055588796543
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 497994894.9494349
the lambda is 200.0
the regulation term lambda/alpha is 4.0161054265487496e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9818307969469989
the lambda is 200.0
the regulation term lambda/alpha is 203.7010864009355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.30582383096550086
the lambda is 200.0
the regulation term lambda/alpha is 653.9712728357047
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5698810187208077
the lambda is 200.0
the regulation term lambda/alpha is 350.9504500587388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.33416055199982786
the lambda is 200.0
the regulation term lambda/alpha is 598.5146924227699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 153.27194047746647
the lambda is 200.0
the regulation term lambda/alpha is 1.3048702807374148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10451648312862781
the lambda is 200.0
the regulation term lambda/alpha is 1913.5737638039466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 497566490.997999
the lambda is 200.0
the regulation term lambda/alpha is 4.019563286885497e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10764426269852986
the lambda is 200.0
the regulation term lambda/alpha is 1857.971757957254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1606619977307483
the lambda is 200.0
the regulation term lambda/alpha is 1244.849453043512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 74.54429100416256
the lambda is 200.0
the regulation term lambda/alpha is 2.6829687063336882
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.43614219706714
the lambda is 200.0
the regulation term lambda/alpha is 458.56603957358396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06307160931268876
the lambda is 200.0
the regulation term lambda/alpha is 3170.9988405157746
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 22063465.670256775
the lambda is 200.0
the regulation term lambda/alpha is 9.064759045067665e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 15626.033855643784
the lambda is 200.0
the regulation term lambda/alpha is 0.01279915312149182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08420627591712133
the lambda is 200.0
the regulation term lambda/alpha is 2375.1198805757276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0712030197459352
the lambda is 200.0
the regulation term lambda/alpha is 2808.869633810966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8366377564708974
the lambda is 200.0
the regulation term lambda/alpha is 239.05208491144282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 769.1371213345167
the lambda is 200.0
the regulation term lambda/alpha is 0.26003165684290913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15384407573594416
the lambda is 200.0
the regulation term lambda/alpha is 1300.017560268471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 50.14687375814259
the lambda is 200.0
the regulation term lambda/alpha is 3.9882845132997953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06503090222635444
the lambda is 200.0
the regulation term lambda/alpha is 3075.4609447652406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06354051507189538
the lambda is 200.0
the regulation term lambda/alpha is 3147.5980289694257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07215532673889345
the lambda is 200.0
the regulation term lambda/alpha is 2771.798133819484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2293120287248761
the lambda is 200.0
the regulation term lambda/alpha is 872.1740464821229
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5764585007333161
the lambda is 200.0
the regulation term lambda/alpha is 346.9460503151205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06436945609260039
the lambda is 200.0
the regulation term lambda/alpha is 3107.063693567407
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 29.886526885501816
the lambda is 200.0
the regulation term lambda/alpha is 6.6919786553392235
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.58315790440767
the lambda is 200.0
the regulation term lambda/alpha is 342.9602831211654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 101.40659414385361
the lambda is 200.0
the regulation term lambda/alpha is 1.972258329830933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11207274650714473
the lambda is 200.0
the regulation term lambda/alpha is 1784.5551771790463
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.7388520273478543
the lambda is 200.0
the regulation term lambda/alpha is 53.49235501621858
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38873911429420127
the lambda is 200.0
the regulation term lambda/alpha is 514.4838598583578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5633040729445208
the lambda is 200.0
the regulation term lambda/alpha is 355.0480275325433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38663175232997254
the lambda is 200.0
the regulation term lambda/alpha is 517.2880881995153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.55546616581047
the lambda is 200.0
the regulation term lambda/alpha is 56.251414209256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17819013379401816
the lambda is 200.0
the regulation term lambda/alpha is 1122.396598181992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 253735647.11422762
the lambda is 200.0
the regulation term lambda/alpha is 7.882219241743486e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.630539409748813
the lambda is 200.0
the regulation term lambda/alpha is 43.19151232768563
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06454363625083055
the lambda is 200.0
the regulation term lambda/alpha is 3098.67884143925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07297780866360025
the lambda is 200.0
the regulation term lambda/alpha is 2740.5591324607103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9904223
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992076622e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 251863401.22575945
the lambda is 200.0
the regulation term lambda/alpha is 7.940812322340103e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.47200983774461
the lambda is 200.0
the regulation term lambda/alpha is 80.90582688880971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 74.3729638048216
the lambda is 200.0
the regulation term lambda/alpha is 2.689149252204926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4884525015899672
the lambda is 200.0
the regulation term lambda/alpha is 134.36774084921063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 274671111.2846351
the lambda is 200.0
the regulation term lambda/alpha is 7.281435570876064e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999998
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920000013e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07422910370455187
the lambda is 200.0
the regulation term lambda/alpha is 2694.3609718910784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 315.4741297027628
the lambda is 200.0
the regulation term lambda/alpha is 0.6339664053861989
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07193868160780588
the lambda is 200.0
the regulation term lambda/alpha is 2780.145472923131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1980946068841776
the lambda is 200.0
the regulation term lambda/alpha is 166.9317254670978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 11.876173401980417
the lambda is 200.0
the regulation term lambda/alpha is 16.84044121203627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10530387773180606
the lambda is 200.0
the regulation term lambda/alpha is 1899.265291154533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 833.3733543421281
the lambda is 200.0
the regulation term lambda/alpha is 0.23998847450298152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09206409450777286
the lambda is 200.0
the regulation term lambda/alpha is 2172.3995773739375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.612250619044015
the lambda is 200.0
the regulation term lambda/alpha is 76.5623323206226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0695846890203306
the lambda is 200.0
the regulation term lambda/alpha is 2874.19549926516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11455146962728067
the lambda is 200.0
the regulation term lambda/alpha is 1745.9400621462614
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41063750870570576
the lambda is 200.0
the regulation term lambda/alpha is 487.0475681346862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 9.876492588716097
the lambda is 200.0
the regulation term lambda/alpha is 20.25010378972999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18409758832633974
the lambda is 200.0
the regulation term lambda/alpha is 1086.3803367454816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05713713679372085
the lambda is 200.0
the regulation term lambda/alpha is 3500.350406462426
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9203158
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999926374735e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08369361062636743
the lambda is 200.0
the regulation term lambda/alpha is 2389.668679642202
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33939964740956247
the lambda is 200.0
the regulation term lambda/alpha is 589.2758036918488
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.8868428123179185
the lambda is 200.0
the regulation term lambda/alpha is 225.51910803366053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13157927081823415
the lambda is 200.0
the regulation term lambda/alpha is 1519.9962635169443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06722428183540434
the lambda is 200.0
the regulation term lambda/alpha is 2975.1154573832578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 74908.77156349181
the lambda is 200.0
the regulation term lambda/alpha is 0.0026699142947562864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07445466638266861
the lambda is 200.0
the regulation term lambda/alpha is 2686.1983233136284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 22.256562818648025
the lambda is 200.0
the regulation term lambda/alpha is 8.986113517601503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4936395784460107
the lambda is 200.0
the regulation term lambda/alpha is 405.15389918613255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 84.97678313780781
the lambda is 200.0
the regulation term lambda/alpha is 2.353584033366593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 15650.864611729954
the lambda is 200.0
the regulation term lambda/alpha is 0.01277884672582911
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6692324794520927
the lambda is 200.0
the regulation term lambda/alpha is 119.81554544496271
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09067249525058775
the lambda is 200.0
the regulation term lambda/alpha is 2205.740555030149
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.2441015751786906
the lambda is 200.0
the regulation term lambda/alpha is 61.65035075666016
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10297140524512154
the lambda is 200.0
the regulation term lambda/alpha is 1942.286788491462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06701214387078251
the lambda is 200.0
the regulation term lambda/alpha is 2984.5336747568313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13848876071892624
the lambda is 200.0
the regulation term lambda/alpha is 1444.1605149887623
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.44740962246722266
the lambda is 200.0
the regulation term lambda/alpha is 447.0176544194734
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.802996188028951
the lambda is 200.0
the regulation term lambda/alpha is 34.464954571671385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9677630833521249
the lambda is 200.0
the regulation term lambda/alpha is 206.6621505206033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35545617051649225
the lambda is 200.0
the regulation term lambda/alpha is 562.6572741989311
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12611113264131235
the lambda is 200.0
the regulation term lambda/alpha is 1585.9028129486692
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10016044419941912
the lambda is 200.0
the regulation term lambda/alpha is 1996.7962562326566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08514831542463311
the lambda is 200.0
the regulation term lambda/alpha is 2348.8427105410556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11207581373997721
the lambda is 200.0
the regulation term lambda/alpha is 1784.506338397081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0802135656542375
the lambda is 200.0
the regulation term lambda/alpha is 2493.3438423882662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3215270759176711
the lambda is 200.0
the regulation term lambda/alpha is 622.0315954081925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 8.029595870164702
the lambda is 200.0
the regulation term lambda/alpha is 24.907853799110022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16246539261470483
the lambda is 200.0
the regulation term lambda/alpha is 1231.0314017109506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3381268103968454
the lambda is 200.0
the regulation term lambda/alpha is 591.4940603653059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 497018206.25874966
the lambda is 200.0
the regulation term lambda/alpha is 4.023997460887362e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09856998259543014
the lambda is 200.0
the regulation term lambda/alpha is 2029.0152715241761
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.6857703623261441
the lambda is 200.0
the regulation term lambda/alpha is 291.6428165860023
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 256394.83108580014
the lambda is 200.0
the regulation term lambda/alpha is 0.000780046926660046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11257713228284476
the lambda is 200.0
the regulation term lambda/alpha is 1776.5597323753939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.0450142558610116
the lambda is 200.0
the regulation term lambda/alpha is 97.79882923886713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06499883684786174
the lambda is 200.0
the regulation term lambda/alpha is 3076.978138364631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  24  iterations
the alpha is 30088.840285208902
the lambda is 200.0
the regulation term lambda/alpha is 0.006646982672121005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99985117
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992001191e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11928332883441409
the lambda is 200.0
the regulation term lambda/alpha is 1676.6802364950313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6156276510111005
the lambda is 200.0
the regulation term lambda/alpha is 123.79089939122728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0620356695665953
the lambda is 200.0
the regulation term lambda/alpha is 188.3175920839059
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0422228380808252
the lambda is 200.0
the regulation term lambda/alpha is 191.897541190217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 990.4064579057988
the lambda is 200.0
the regulation term lambda/alpha is 0.2019372939297037
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20656920948384666
the lambda is 200.0
the regulation term lambda/alpha is 968.1985059619432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18191845437634127
the lambda is 200.0
the regulation term lambda/alpha is 1099.3936854050705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15714908007370257
the lambda is 200.0
the regulation term lambda/alpha is 1272.676874126151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22996509194108447
the lambda is 200.0
the regulation term lambda/alpha is 869.6972149635592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1271946355779551
the lambda is 200.0
the regulation term lambda/alpha is 1572.3933567734775
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05349743784046824
the lambda is 200.0
the regulation term lambda/alpha is 3738.4967967327516
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11126147903959481
the lambda is 200.0
the regulation term lambda/alpha is 1797.5673317161788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9456301875500812
the lambda is 200.0
the regulation term lambda/alpha is 211.4991702180699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13714425646611575
the lambda is 200.0
the regulation term lambda/alpha is 1458.3184535286318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06760390174764776
the lambda is 200.0
the regulation term lambda/alpha is 2958.4091277240354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18847202615931194
the lambda is 200.0
the regulation term lambda/alpha is 1061.1654369913956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07928641621000244
the lambda is 200.0
the regulation term lambda/alpha is 2522.50019057828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 43.48964912516526
the lambda is 200.0
the regulation term lambda/alpha is 4.598795438068277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056492125526219045
the lambda is 200.0
the regulation term lambda/alpha is 3540.3164270598436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38771003481583455
the lambda is 200.0
the regulation term lambda/alpha is 515.8494288005768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.824893669701819
the lambda is 200.0
the regulation term lambda/alpha is 242.4554913511406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.105274932325592
the lambda is 200.0
the regulation term lambda/alpha is 1899.7874952932232
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14186354261426723
the lambda is 200.0
the regulation term lambda/alpha is 1409.805481481653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3647709594134562
the lambda is 200.0
the regulation term lambda/alpha is 548.2892616276133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17462864550486906
the lambda is 200.0
the regulation term lambda/alpha is 1145.2874722917297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08320473412429542
the lambda is 200.0
the regulation term lambda/alpha is 2403.7093815026187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12371957010441427
the lambda is 200.0
the regulation term lambda/alpha is 1616.5591250536045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14747051633194747
the lambda is 200.0
the regulation term lambda/alpha is 1356.2032938829057
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06963461124140649
the lambda is 200.0
the regulation term lambda/alpha is 2872.134940290655
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4003726679454276
the lambda is 200.0
the regulation term lambda/alpha is 499.53459866861044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.5638417501571693
the lambda is 200.0
the regulation term lambda/alpha is 78.00793476732312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05709808299633791
the lambda is 200.0
the regulation term lambda/alpha is 3502.744566973069
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5169419369015787
the lambda is 200.0
the regulation term lambda/alpha is 386.8906461695683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06313635577802627
the lambda is 200.0
the regulation term lambda/alpha is 3167.7469745507105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.5710563343521922
the lambda is 200.0
the regulation term lambda/alpha is 350.2281438255659
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 17.340555484712276
the lambda is 200.0
the regulation term lambda/alpha is 11.533655895644367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 62.90415195142892
the lambda is 200.0
the regulation term lambda/alpha is 3.179440367536134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.630560850221616
the lambda is 200.0
the regulation term lambda/alpha is 26.21039317105916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 2286332.5822749306
the lambda is 200.0
the regulation term lambda/alpha is 8.747633723567785e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07044919444740246
the lambda is 200.0
the regulation term lambda/alpha is 2838.9252931674114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17593471174310674
the lambda is 200.0
the regulation term lambda/alpha is 1136.7853337096576
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.161971835967047
the lambda is 200.0
the regulation term lambda/alpha is 48.05414545856228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4430422676855468
the lambda is 200.0
the regulation term lambda/alpha is 451.42419716475405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.48727791517495017
the lambda is 200.0
the regulation term lambda/alpha is 410.4433912794772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999594.4585021
the lambda is 200.0
the regulation term lambda/alpha is 4.0000032443346143e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10102133194415588
the lambda is 200.0
the regulation term lambda/alpha is 1979.7798757054506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3153339083946167
the lambda is 200.0
the regulation term lambda/alpha is 634.2483148044929
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.4244536415353661
the lambda is 200.0
the regulation term lambda/alpha is 140.4047096853411
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6136040963846129
the lambda is 200.0
the regulation term lambda/alpha is 325.9430652083491
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2577967568021543
the lambda is 200.0
the regulation term lambda/alpha is 775.8049499183176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08280739723509928
the lambda is 200.0
the regulation term lambda/alpha is 2415.2431627838523
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06734153009365165
the lambda is 200.0
the regulation term lambda/alpha is 2969.9354873858765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16106859376441682
the lambda is 200.0
the regulation term lambda/alpha is 1241.7069977808665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12428944157631783
the lambda is 200.0
the regulation term lambda/alpha is 1609.1471444675644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09321834681610396
the lambda is 200.0
the regulation term lambda/alpha is 2145.5003959097135
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5076505772641681
the lambda is 200.0
the regulation term lambda/alpha is 393.9717769609178
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3203249228090762
the lambda is 200.0
the regulation term lambda/alpha is 624.366028862532
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3953650687174997
the lambda is 200.0
the regulation term lambda/alpha is 505.8615842030952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06008932153669032
the lambda is 200.0
the regulation term lambda/alpha is 3328.378402107282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.48321552125028
the lambda is 200.0
the regulation term lambda/alpha is 19.078115831405423
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4549188790467464
the lambda is 200.0
the regulation term lambda/alpha is 439.6388218028834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  30  iterations
the alpha is 191380.28552798004
the lambda is 200.0
the regulation term lambda/alpha is 0.00104503971999122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2392869529801875
the lambda is 200.0
the regulation term lambda/alpha is 89.31414517189371
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11939475171558013
the lambda is 200.0
the regulation term lambda/alpha is 1675.1155065545606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11456544281195376
the lambda is 200.0
the regulation term lambda/alpha is 1745.7271153595366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06501395812215792
the lambda is 200.0
the regulation term lambda/alpha is 3076.2624792696083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 428.1445345059189
the lambda is 200.0
the regulation term lambda/alpha is 0.4671319703538925
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 427651318.4342615
the lambda is 200.0
the regulation term lambda/alpha is 4.67670719997427e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.99664456
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992026844e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5252405279089986
the lambda is 200.0
the regulation term lambda/alpha is 380.777928154568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5243522734831515
the lambda is 200.0
the regulation term lambda/alpha is 381.4229671809107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07017060904546403
the lambda is 200.0
the regulation term lambda/alpha is 2850.196153640602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11768910854690676
the lambda is 200.0
the regulation term lambda/alpha is 1699.392598596216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.99999917
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920000066e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 179124181.4072895
the lambda is 200.0
the regulation term lambda/alpha is 1.1165438324892797e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12898955791246394
the lambda is 200.0
the regulation term lambda/alpha is 1550.5131053765283
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18153967175698446
the lambda is 200.0
the regulation term lambda/alpha is 1101.687570900355
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.315604040199597
the lambda is 200.0
the regulation term lambda/alpha is 152.02142429545668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.19363396093306
the lambda is 200.0
the regulation term lambda/alpha is 62.6245845474312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22456014995279425
the lambda is 200.0
the regulation term lambda/alpha is 890.6299717115564
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08854161367297542
the lambda is 200.0
the regulation term lambda/alpha is 2258.824881356819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06010724320361676
the lambda is 200.0
the regulation term lambda/alpha is 3327.3860077476593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 3485.729038142287
the lambda is 200.0
the regulation term lambda/alpha is 0.05737680634711344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 3475.1119175040117
the lambda is 200.0
the regulation term lambda/alpha is 0.05755210328410067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 4004.5460550571875
the lambda is 200.0
the regulation term lambda/alpha is 0.049943238821645634
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.2603379441824045
the lambda is 200.0
the regulation term lambda/alpha is 61.34333416475145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.35065978311104085
the lambda is 200.0
the regulation term lambda/alpha is 570.3534013099742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.101573928639027
the lambda is 200.0
the regulation term lambda/alpha is 1969.0092002915349
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1648687819504412
the lambda is 200.0
the regulation term lambda/alpha is 1213.0859319390077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 210.3039461485651
the lambda is 200.0
the regulation term lambda/alpha is 0.9510045040177891
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07493049955254226
the lambda is 200.0
the regulation term lambda/alpha is 2669.140085737148
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.568362537112862
the lambda is 200.0
the regulation term lambda/alpha is 56.048116725779394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3130181161096752
the lambda is 200.0
the regulation term lambda/alpha is 152.32082295450536
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.3859825016504606
the lambda is 200.0
the regulation term lambda/alpha is 83.82291146798168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 75327026.3918016
the lambda is 200.0
the regulation term lambda/alpha is 2.655089541962425e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37388089209565617
the lambda is 200.0
the regulation term lambda/alpha is 534.9297175337612
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054579676858984016
the lambda is 200.0
the regulation term lambda/alpha is 3664.367609151194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 17873.72266228477
the lambda is 200.0
the regulation term lambda/alpha is 0.011189610792273215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9477595535119653
the lambda is 200.0
the regulation term lambda/alpha is 211.02398731713237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2520905786102496
the lambda is 200.0
the regulation term lambda/alpha is 793.3656271590164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06895391542329066
the lambda is 200.0
the regulation term lambda/alpha is 2900.4879385347526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11422292178904783
the lambda is 200.0
the regulation term lambda/alpha is 1750.9620386822992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10510888743049748
the lambda is 200.0
the regulation term lambda/alpha is 1902.7886688673077
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0339301411124502
the lambda is 200.0
the regulation term lambda/alpha is 193.4366666057451
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9460747932581727
the lambda is 200.0
the regulation term lambda/alpha is 211.39977666165592
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.150243786403518
the lambda is 200.0
the regulation term lambda/alpha is 1331.169859250279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 0.9983948831399405
the lambda is 200.0
the regulation term lambda/alpha is 200.32153948045314
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08173107716703476
the lambda is 200.0
the regulation term lambda/alpha is 2447.0496038031856
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9252244633429576
the lambda is 200.0
the regulation term lambda/alpha is 103.88399057256952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2677248045372005
the lambda is 200.0
the regulation term lambda/alpha is 747.0357494357976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.320538551958046
the lambda is 200.0
the regulation term lambda/alpha is 151.45335946720175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.075627312802017
the lambda is 200.0
the regulation term lambda/alpha is 2644.5472222922344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10308189965163353
the lambda is 200.0
the regulation term lambda/alpha is 1940.2048339805758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.4616311741100585
the lambda is 200.0
the regulation term lambda/alpha is 81.24693987607832
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 7987.14360585079
the lambda is 200.0
the regulation term lambda/alpha is 0.025040240900826526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 41.32032002646718
the lambda is 200.0
the regulation term lambda/alpha is 4.840233567210822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08783801908833763
the lambda is 200.0
the regulation term lambda/alpha is 2276.918378576621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06844370743102994
the lambda is 200.0
the regulation term lambda/alpha is 2922.10938750707
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06172334711938448
the lambda is 200.0
the regulation term lambda/alpha is 3240.2649780667703
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05910019164196355
the lambda is 200.0
the regulation term lambda/alpha is 3384.083781176639
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41542056765310553
the lambda is 200.0
the regulation term lambda/alpha is 481.43981201963214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41342178223389753
the lambda is 200.0
the regulation term lambda/alpha is 483.7674466964781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13456419756260138
the lambda is 200.0
the regulation term lambda/alpha is 1486.2794385330976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5013125649815868
the lambda is 200.0
the regulation term lambda/alpha is 398.9526973203753
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08039184806204992
the lambda is 200.0
the regulation term lambda/alpha is 2487.814434190284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06581804737022864
the lambda is 200.0
the regulation term lambda/alpha is 3038.6802403145375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 122.35457812615435
the lambda is 200.0
the regulation term lambda/alpha is 1.6345935155265618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  33  iterations
the alpha is 9402315.425097635
the lambda is 200.0
the regulation term lambda/alpha is 2.1271356145544666e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20613486639064282
the lambda is 200.0
the regulation term lambda/alpha is 970.238579731501
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3346283956809222
the lambda is 200.0
the regulation term lambda/alpha is 149.85444686118848
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 35.656557948415845
the lambda is 200.0
the regulation term lambda/alpha is 5.6090663683617175
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 369396493.39336485
the lambda is 200.0
the regulation term lambda/alpha is 5.414236560903759e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.901119052745549
the lambda is 200.0
the regulation term lambda/alpha is 40.80700710340068
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10930155225649901
the lambda is 200.0
the regulation term lambda/alpha is 1829.8001800620184
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0783398275324963
the lambda is 200.0
the regulation term lambda/alpha is 2552.9798354105083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 28542113.68756066
the lambda is 200.0
the regulation term lambda/alpha is 7.007189523148905e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1819410033945908
the lambda is 200.0
the regulation term lambda/alpha is 1099.2574310818939
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05321258052496835
the lambda is 200.0
the regulation term lambda/alpha is 3758.509698776142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.357695292174002
the lambda is 200.0
the regulation term lambda/alpha is 19.30931489663677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13158320440668156
the lambda is 200.0
the regulation term lambda/alpha is 1519.9508242850206
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 491684695.2492637
the lambda is 200.0
the regulation term lambda/alpha is 4.067647456437673e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08327446780959
the lambda is 200.0
the regulation term lambda/alpha is 2401.6965254861434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06519280508914746
the lambda is 200.0
the regulation term lambda/alpha is 3067.8232011417726
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.301237558222965
the lambda is 200.0
the regulation term lambda/alpha is 46.4982455148627
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11913544705005061
the lambda is 200.0
the regulation term lambda/alpha is 1678.761484950629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 136440.5403531399
the lambda is 200.0
the regulation term lambda/alpha is 0.0014658399877510997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09115018439081124
the lambda is 200.0
the regulation term lambda/alpha is 2194.1809699746673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08388943274784992
the lambda is 200.0
the regulation term lambda/alpha is 2384.09050399886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 768.6731795291786
the lambda is 200.0
the regulation term lambda/alpha is 0.26018860203045246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06393403414356594
the lambda is 200.0
the regulation term lambda/alpha is 3128.224312435745
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24717016638454153
the lambda is 200.0
the regulation term lambda/alpha is 809.1591429721526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13511670690433364
the lambda is 200.0
the regulation term lambda/alpha is 1480.2018535102807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.49518982412802
the lambda is 200.0
the regulation term lambda/alpha is 44.49200319116582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12728340125776502
the lambda is 200.0
the regulation term lambda/alpha is 1571.2967914408152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 770.7729925228407
the lambda is 200.0
the regulation term lambda/alpha is 0.259479771528286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13474100861872879
the lambda is 200.0
the regulation term lambda/alpha is 1484.3290995834234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14172242193140544
the lambda is 200.0
the regulation term lambda/alpha is 1411.209301071649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08854852918502434
the lambda is 200.0
the regulation term lambda/alpha is 2258.648470400847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 11.031734161410228
the lambda is 200.0
the regulation term lambda/alpha is 18.12951591052782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08184147065604411
the lambda is 200.0
the regulation term lambda/alpha is 2443.7488524679843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.88665664
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992906747e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.690626627314048
the lambda is 200.0
the regulation term lambda/alpha is 74.33212693641278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0682471358397202
the lambda is 200.0
the regulation term lambda/alpha is 2930.5259120280757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.35624826203481647
the lambda is 200.0
the regulation term lambda/alpha is 561.406247591613
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18867455182091994
the lambda is 200.0
the regulation term lambda/alpha is 1060.0263685259981
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06852275098465578
the lambda is 200.0
the regulation term lambda/alpha is 2918.7386251434327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 34163.965460646265
the lambda is 200.0
the regulation term lambda/alpha is 0.0058541213615960815
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06909515275180411
the lambda is 200.0
the regulation term lambda/alpha is 2894.5590542135083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08493736830951874
the lambda is 200.0
the regulation term lambda/alpha is 2354.676204131774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07276591142971695
the lambda is 200.0
the regulation term lambda/alpha is 2748.53974986867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 62849019.217542246
the lambda is 200.0
the regulation term lambda/alpha is 3.1822294522644923e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10726024915839019
the lambda is 200.0
the regulation term lambda/alpha is 1864.6236753064213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05232592302852736
the lambda is 200.0
the regulation term lambda/alpha is 3822.1972671358862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059769894983243976
the lambda is 200.0
the regulation term lambda/alpha is 3346.1661603398907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17875567999516723
the lambda is 200.0
the regulation term lambda/alpha is 1118.8455662242852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1066423231975142
the lambda is 200.0
the regulation term lambda/alpha is 1875.4280102241992
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.310389841947621
the lambda is 200.0
the regulation term lambda/alpha is 86.56547755222263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2003170022393236
the lambda is 200.0
the regulation term lambda/alpha is 998.4174970882158
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1615096997002887
the lambda is 200.0
the regulation term lambda/alpha is 172.18969419851354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7340258770948881
the lambda is 200.0
the regulation term lambda/alpha is 272.4699581322061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.776370392215905
the lambda is 200.0
the regulation term lambda/alpha is 72.0364979257591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06518757385751368
the lambda is 200.0
the regulation term lambda/alpha is 3068.06939060438
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.58526903810547
the lambda is 200.0
the regulation term lambda/alpha is 30.370816870610106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16920922453426035
the lambda is 200.0
the regulation term lambda/alpha is 1181.9686577400828
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06360041321959378
the lambda is 200.0
the regulation term lambda/alpha is 3144.6336568515367
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.873338844862204
the lambda is 200.0
the regulation term lambda/alpha is 41.03962526858834
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07131070763638499
the lambda is 200.0
the regulation term lambda/alpha is 2804.6278971147617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 348180.6234215666
the lambda is 200.0
the regulation term lambda/alpha is 0.0005744145036981165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5900228730269205
the lambda is 200.0
the regulation term lambda/alpha is 338.96990971547433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32077388744845525
the lambda is 200.0
the regulation term lambda/alpha is 623.4921476647246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34521791161473614
the lambda is 200.0
the regulation term lambda/alpha is 579.3442149757293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 545966.0415186839
the lambda is 200.0
the regulation term lambda/alpha is 0.00036632314977625883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 10.037380008468661
the lambda is 200.0
the regulation term lambda/alpha is 19.925518395363884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3806434839184127
the lambda is 200.0
the regulation term lambda/alpha is 144.8599890772517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 55.833094586612766
the lambda is 200.0
the regulation term lambda/alpha is 3.5821048695365434
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 456368.6400365843
the lambda is 200.0
the regulation term lambda/alpha is 0.00043824220696664704
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6166872826078417
the lambda is 200.0
the regulation term lambda/alpha is 324.31348211729255
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2680263815251868
the lambda is 200.0
the regulation term lambda/alpha is 746.19520235998
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08573669239878659
the lambda is 200.0
the regulation term lambda/alpha is 2332.7235329972978
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1002431002599129
the lambda is 200.0
the regulation term lambda/alpha is 1995.1497856853473
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13770491759213455
the lambda is 200.0
the regulation term lambda/alpha is 1452.3809570285357
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060796657328859936
the lambda is 200.0
the regulation term lambda/alpha is 3289.6545433109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13975127097306408
the lambda is 200.0
the regulation term lambda/alpha is 1431.1139970852098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.48958675332596796
the lambda is 200.0
the regulation term lambda/alpha is 408.50778465985076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.834203851004435
the lambda is 200.0
the regulation term lambda/alpha is 70.56655431793322
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0990854629800159
the lambda is 200.0
the regulation term lambda/alpha is 2018.4595599087738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12996772035106363
the lambda is 200.0
the regulation term lambda/alpha is 1538.8436410192312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11840743907251434
the lambda is 200.0
the regulation term lambda/alpha is 1689.0830640929346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8694043924538812
the lambda is 200.0
the regulation term lambda/alpha is 230.04254606478685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1633391050011321
the lambda is 200.0
the regulation term lambda/alpha is 1224.4465279677747
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2254473.4216827443
the lambda is 200.0
the regulation term lambda/alpha is 8.871251178943574e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08610027676941617
the lambda is 200.0
the regulation term lambda/alpha is 2322.872904759841
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07890592554937717
the lambda is 200.0
the regulation term lambda/alpha is 2534.663887502916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.53243392140736
the lambda is 200.0
the regulation term lambda/alpha is 375.6334672880129
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09365237622650864
the lambda is 200.0
the regulation term lambda/alpha is 2135.557132221374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.062017022790421567
the lambda is 200.0
the regulation term lambda/alpha is 3224.921013636432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06162380948902048
the lambda is 200.0
the regulation term lambda/alpha is 3245.498804088605
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9247429489869458
the lambda is 200.0
the regulation term lambda/alpha is 216.27631788823007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3516949523186251
the lambda is 200.0
the regulation term lambda/alpha is 568.674638863756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.536776552802797
the lambda is 200.0
the regulation term lambda/alpha is 44.08416365060806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 39.266726891270466
the lambda is 200.0
the regulation term lambda/alpha is 5.09337079593621
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07447187026838116
the lambda is 200.0
the regulation term lambda/alpha is 2685.5777796266098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33353409275610757
the lambda is 200.0
the regulation term lambda/alpha is 599.6388505514708
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06533566814306219
the lambda is 200.0
the regulation term lambda/alpha is 3061.1150950820643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 41292.07936147876
the lambda is 200.0
the regulation term lambda/alpha is 0.004843543921563304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 78.28678162534757
the lambda is 200.0
the regulation term lambda/alpha is 2.55470969488985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18750305300356992
the lambda is 200.0
the regulation term lambda/alpha is 1066.6492987513764
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.419527872782241
the lambda is 200.0
the regulation term lambda/alpha is 36.90358361370053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 10.006106139149338
the lambda is 200.0
the regulation term lambda/alpha is 19.987795174137823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3762104682657035
the lambda is 200.0
the regulation term lambda/alpha is 531.61731762006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4836544044859876
the lambda is 200.0
the regulation term lambda/alpha is 413.5184093124378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1181516510932207
the lambda is 200.0
the regulation term lambda/alpha is 1692.7397810310886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06703469092271304
the lambda is 200.0
the regulation term lambda/alpha is 2983.529829809881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07704088729866954
the lambda is 200.0
the regulation term lambda/alpha is 2596.024098536751
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10971728594561372
the lambda is 200.0
the regulation term lambda/alpha is 1822.866818808651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06342614035609015
the lambda is 200.0
the regulation term lambda/alpha is 3153.2740109543192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 959574.994223043
the lambda is 200.0
the regulation term lambda/alpha is 0.00020842560634037546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 416.636066543178
the lambda is 200.0
the regulation term lambda/alpha is 0.48003525393131813
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5854930457497234
the lambda is 200.0
the regulation term lambda/alpha is 341.5924432439674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13646295460424496
the lambda is 200.0
the regulation term lambda/alpha is 1465.599221268646
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6797008942852423
the lambda is 200.0
the regulation term lambda/alpha is 294.2470749730517
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7562255274543142
the lambda is 200.0
the regulation term lambda/alpha is 264.47136831423956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.053338972359424426
the lambda is 200.0
the regulation term lambda/alpha is 3749.6035478955405
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 304797629.8960158
the lambda is 200.0
the regulation term lambda/alpha is 6.56173081359693e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15478626843734578
the lambda is 200.0
the regulation term lambda/alpha is 1292.1042804320577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1740560212364678
the lambda is 200.0
the regulation term lambda/alpha is 1149.0553362028506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 3331109.421847697
the lambda is 200.0
the regulation term lambda/alpha is 6.00400571317961e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.860192520928289
the lambda is 200.0
the regulation term lambda/alpha is 41.15063325964716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8153885798588297
the lambda is 200.0
the regulation term lambda/alpha is 245.28182628536015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39947079947272485
the lambda is 200.0
the regulation term lambda/alpha is 500.66237698471787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10199726224042582
the lambda is 200.0
the regulation term lambda/alpha is 1960.8369441187956
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0607126181755809
the lambda is 200.0
the regulation term lambda/alpha is 3294.208123616082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.58996317249746
the lambda is 200.0
the regulation term lambda/alpha is 18.88580694212494
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.018241644922107
the lambda is 200.0
the regulation term lambda/alpha is 99.09616150434697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06311687531671378
the lambda is 200.0
the regulation term lambda/alpha is 3168.7246714356693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09642038349660839
the lambda is 200.0
the regulation term lambda/alpha is 2074.2502025729345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06747236412721302
the lambda is 200.0
the regulation term lambda/alpha is 2964.176557129644
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08191677988957027
the lambda is 200.0
the regulation term lambda/alpha is 2441.50222054156
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.060232274822401
the lambda is 200.0
the regulation term lambda/alpha is 28.327679914048005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18589747711577484
the lambda is 200.0
the regulation term lambda/alpha is 1075.8618304187219
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09337392908531175
the lambda is 200.0
the regulation term lambda/alpha is 2141.9255027521504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 100.92342770427486
the lambda is 200.0
the regulation term lambda/alpha is 1.9817004292208409
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.40253871161003135
the lambda is 200.0
the regulation term lambda/alpha is 496.84662426642484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2419425080759955
the lambda is 200.0
the regulation term lambda/alpha is 826.6426664353619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0875424604963046
the lambda is 200.0
the regulation term lambda/alpha is 2284.6056515448586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 441060608.6882635
the lambda is 200.0
the regulation term lambda/alpha is 4.534524191466794e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.34959025062179117
the lambda is 200.0
the regulation term lambda/alpha is 572.0983341047821
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06197578849951784
the lambda is 200.0
the regulation term lambda/alpha is 3227.0666471884574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2906893874669142
the lambda is 200.0
the regulation term lambda/alpha is 688.0196134534278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07625653762443027
the lambda is 200.0
the regulation term lambda/alpha is 2622.7259488886903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11812073285025991
the lambda is 200.0
the regulation term lambda/alpha is 1693.1828576913533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.22638380159127425
the lambda is 200.0
the regulation term lambda/alpha is 883.4554353897237
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06351174215987443
the lambda is 200.0
the regulation term lambda/alpha is 3149.0239945953867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 11469.743374574362
the lambda is 200.0
the regulation term lambda/alpha is 0.0174371817632251
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 469400158.24506676
the lambda is 200.0
the regulation term lambda/alpha is 4.260756978602956e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.038654170771407
the lambda is 200.0
the regulation term lambda/alpha is 49.52144737904083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7364941020343235
the lambda is 200.0
the regulation term lambda/alpha is 271.5568250276079
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06007112833359438
the lambda is 200.0
the regulation term lambda/alpha is 3329.386438179343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 5769.262194805766
the lambda is 200.0
the regulation term lambda/alpha is 0.034666477834906825
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3080999417080825
the lambda is 200.0
the regulation term lambda/alpha is 649.1400124622396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  27  iterations
the alpha is 10993.998222655768
the lambda is 200.0
the regulation term lambda/alpha is 0.018191743890575866
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06563759790960169
the lambda is 200.0
the regulation term lambda/alpha is 3047.0341141284107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 342.1348649855892
the lambda is 200.0
the regulation term lambda/alpha is 0.5845648031469228
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.5543513626881826
the lambda is 200.0
the regulation term lambda/alpha is 78.29776393390192
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 7504.310173136041
the lambda is 200.0
the regulation term lambda/alpha is 0.02665135040872388
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 22.293952656965498
the lambda is 200.0
the regulation term lambda/alpha is 8.971042644495444
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 320.957071608634
the lambda is 200.0
the regulation term lambda/alpha is 0.6231362935784582
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 492.9344123367264
the lambda is 200.0
the regulation term lambda/alpha is 0.40573349109856593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 596.7891134274996
the lambda is 200.0
the regulation term lambda/alpha is 0.3351267566718052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 496647774.63748264
the lambda is 200.0
the regulation term lambda/alpha is 4.026998815125784e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 163771552.05803674
the lambda is 200.0
the regulation term lambda/alpha is 1.2212133150519618e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17616072155077483
the lambda is 200.0
the regulation term lambda/alpha is 1135.3268665078326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06021675448260905
the lambda is 200.0
the regulation term lambda/alpha is 3321.3347633632625
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10099221595865855
the lambda is 200.0
the regulation term lambda/alpha is 1980.3506448642593
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1699049349589946
the lambda is 200.0
the regulation term lambda/alpha is 1177.1288458941385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07771455799492205
the lambda is 200.0
the regulation term lambda/alpha is 2573.520395150008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1163487924630144
the lambda is 200.0
the regulation term lambda/alpha is 1718.969279922498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15075298239098026
the lambda is 200.0
the regulation term lambda/alpha is 1326.6735876660591
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6905655282750989
the lambda is 200.0
the regulation term lambda/alpha is 289.6177000024341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 22.18071254645815
the lambda is 200.0
the regulation term lambda/alpha is 9.016842880096577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 1308612.3491148148
the lambda is 200.0
the regulation term lambda/alpha is 0.0001528336486624829
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06634393567276689
the lambda is 200.0
the regulation term lambda/alpha is 3014.5935415480144
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06740962797023346
the lambda is 200.0
the regulation term lambda/alpha is 2966.9352290197385
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11882463618628704
the lambda is 200.0
the regulation term lambda/alpha is 1683.1526392090145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 40.309623969897245
the lambda is 200.0
the regulation term lambda/alpha is 4.96159428699602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05682351505128869
the lambda is 200.0
the regulation term lambda/alpha is 3519.669626553035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 28.58652059074491
the lambda is 200.0
the regulation term lambda/alpha is 6.996304407355942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 8989699.59372925
the lambda is 200.0
the regulation term lambda/alpha is 2.224768446539745e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06321232523807145
the lambda is 200.0
the regulation term lambda/alpha is 3163.939931757869
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10975739270204217
the lambda is 200.0
the regulation term lambda/alpha is 1822.2007199363688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10827422153584174
the lambda is 200.0
the regulation term lambda/alpha is 1847.161745086244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.062193614747890626
the lambda is 200.0
the regulation term lambda/alpha is 3215.764203620007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08987633332189376
the lambda is 200.0
the regulation term lambda/alpha is 2225.279921953383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20863179608725552
the lambda is 200.0
the regulation term lambda/alpha is 958.6266511186748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08434311886105825
the lambda is 200.0
the regulation term lambda/alpha is 2371.2663546325325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.32531770314892056
the lambda is 200.0
the regulation term lambda/alpha is 614.7836347794638
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3507577948479221
the lambda is 200.0
the regulation term lambda/alpha is 148.065034873641
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 11.987918691669561
the lambda is 200.0
the regulation term lambda/alpha is 16.683463171883254
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25294993280279765
the lambda is 200.0
the regulation term lambda/alpha is 790.6703029485366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.31337467746026765
the lambda is 200.0
the regulation term lambda/alpha is 638.213660468331
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1347697.5865309217
the lambda is 200.0
the regulation term lambda/alpha is 0.00014840124520428617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08853929608953356
the lambda is 200.0
the regulation term lambda/alpha is 2258.884007816756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10022200659178664
the lambda is 200.0
the regulation term lambda/alpha is 1995.5697037140578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4104204191009331
the lambda is 200.0
the regulation term lambda/alpha is 487.3051892450185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1095778475117346
the lambda is 200.0
the regulation term lambda/alpha is 1825.18642719809
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.509598814925241
the lambda is 200.0
the regulation term lambda/alpha is 79.69401276831486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06647744767933823
the lambda is 200.0
the regulation term lambda/alpha is 3008.539090801492
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0654534051142634
the lambda is 200.0
the regulation term lambda/alpha is 3055.6087899606714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7872385944022252
the lambda is 200.0
the regulation term lambda/alpha is 254.0525851020633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41488163571616143
the lambda is 200.0
the regulation term lambda/alpha is 482.0652031386337
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.286091212471535
the lambda is 200.0
the regulation term lambda/alpha is 699.0777461223114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09141283410110634
the lambda is 200.0
the regulation term lambda/alpha is 2187.876592676164
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 219.81984543345726
the lambda is 200.0
the regulation term lambda/alpha is 0.9098359595587241
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06163239288336764
the lambda is 200.0
the regulation term lambda/alpha is 3245.0468113168586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07167917855209105
the lambda is 200.0
the regulation term lambda/alpha is 2790.210547051052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 585465.330105214
the lambda is 200.0
the regulation term lambda/alpha is 0.0003416086140644024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.758876782085532
the lambda is 200.0
the regulation term lambda/alpha is 72.49327019556594
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08358555742738027
the lambda is 200.0
the regulation term lambda/alpha is 2392.7578657803583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09751407920839748
the lambda is 200.0
the regulation term lambda/alpha is 2050.985884536526
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1165767144823928
the lambda is 200.0
the regulation term lambda/alpha is 1715.608480544432
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11359918010386051
the lambda is 200.0
the regulation term lambda/alpha is 1760.576087055784
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 368.56909797377665
the lambda is 200.0
the regulation term lambda/alpha is 0.5426390901991187
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 446344925.33515716
the lambda is 200.0
the regulation term lambda/alpha is 4.480839562583163e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1605113.0831881121
the lambda is 200.0
the regulation term lambda/alpha is 0.00012460181285343176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 411483907.70543665
the lambda is 200.0
the regulation term lambda/alpha is 4.860457389822672e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 11.8470437422216
the lambda is 200.0
the regulation term lambda/alpha is 16.88184870012941
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15446962672368122
the lambda is 200.0
the regulation term lambda/alpha is 1294.75291836993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.21980852618374844
the lambda is 200.0
the regulation term lambda/alpha is 909.8828124292615
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11347483583335566
the lambda is 200.0
the regulation term lambda/alpha is 1762.5053037636603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5599842179106567
the lambda is 200.0
the regulation term lambda/alpha is 128.20642523413937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17770413737898685
the lambda is 200.0
the regulation term lambda/alpha is 1125.4661987608263
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 794.2028315263398
the lambda is 200.0
the regulation term lambda/alpha is 0.25182483877025436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05538867389549761
the lambda is 200.0
the regulation term lambda/alpha is 3610.846513085727
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2346.0935654424175
the lambda is 200.0
the regulation term lambda/alpha is 0.08524809195420335
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05850456140923448
the lambda is 200.0
the regulation term lambda/alpha is 3418.536865886693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  36  iterations
the alpha is 187637205.37977788
the lambda is 200.0
the regulation term lambda/alpha is 1.065886691262534e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060909175388281125
the lambda is 200.0
the regulation term lambda/alpha is 3283.577535322861
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12130214736825404
the lambda is 200.0
the regulation term lambda/alpha is 1648.7754284582595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.018464340569836
the lambda is 200.0
the regulation term lambda/alpha is 39.852828759422934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10605629922331553
the lambda is 200.0
the regulation term lambda/alpha is 1885.7908626330022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07626337680041945
the lambda is 200.0
the regulation term lambda/alpha is 2622.4907470776984
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.616056052766048
the lambda is 200.0
the regulation term lambda/alpha is 35.612180170725864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1004400648567775
the lambda is 200.0
the regulation term lambda/alpha is 1991.2372645835103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09635534906979056
the lambda is 200.0
the regulation term lambda/alpha is 2075.6502044856816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2524206892500287
the lambda is 200.0
the regulation term lambda/alpha is 792.3280797395147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.20929615549620423
the lambda is 200.0
the regulation term lambda/alpha is 955.5837254909691
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07506419587561469
the lambda is 200.0
the regulation term lambda/alpha is 2664.3860986855902
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.28490294072283057
the lambda is 200.0
the regulation term lambda/alpha is 701.9934560611332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0707281960535162
the lambda is 200.0
the regulation term lambda/alpha is 2827.7265809051714
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2696231743909516
the lambda is 200.0
the regulation term lambda/alpha is 741.7760007157302
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 2888.242601328452
the lambda is 200.0
the regulation term lambda/alpha is 0.06924626065276153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3296893624861024
the lambda is 200.0
the regulation term lambda/alpha is 150.41107016608953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11834733541217221
the lambda is 200.0
the regulation term lambda/alpha is 1689.9408787147875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 18.627718553612723
the lambda is 200.0
the regulation term lambda/alpha is 10.736687878570686
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.508235968270997
the lambda is 200.0
the regulation term lambda/alpha is 44.36325015096852
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1618.1796845632364
the lambda is 200.0
the regulation term lambda/alpha is 0.1235956685823689
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999975.47404873
the lambda is 200.0
the regulation term lambda/alpha is 4.0000001962076196e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 420178244.4594691
the lambda is 200.0
the regulation term lambda/alpha is 4.759884706960173e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 4795.640456056499
the lambda is 200.0
the regulation term lambda/alpha is 0.04170454433201231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0901318097496714
the lambda is 200.0
the regulation term lambda/alpha is 2218.9724200087876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05505485910374007
the lambda is 200.0
the regulation term lambda/alpha is 3632.7402023341715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13753774619465137
the lambda is 200.0
the regulation term lambda/alpha is 1454.146265541886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 86.32307353828382
the lambda is 200.0
the regulation term lambda/alpha is 2.3168776527784436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08007093257141097
the lambda is 200.0
the regulation term lambda/alpha is 2497.7853208045344
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06281261474187759
the lambda is 200.0
the regulation term lambda/alpha is 3184.073785526694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 213.45060419488388
the lambda is 200.0
the regulation term lambda/alpha is 0.9369849326704025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10360334019113392
the lambda is 200.0
the regulation term lambda/alpha is 1930.4396907573396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499992749.5028735
the lambda is 200.0
the regulation term lambda/alpha is 4.0000580048181394e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 523.1196452062276
the lambda is 200.0
the regulation term lambda/alpha is 0.38232171518076846
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2488707613103347
the lambda is 200.0
the regulation term lambda/alpha is 803.6299601728052
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2501888932621696
the lambda is 200.0
the regulation term lambda/alpha is 799.3959979287437
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.059323544855423564
the lambda is 200.0
the regulation term lambda/alpha is 3371.342701913999
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 474.79454604121025
the lambda is 200.0
the regulation term lambda/alpha is 0.4212348302388478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05936331032379119
the lambda is 200.0
the regulation term lambda/alpha is 3369.084353772055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0706443293187998
the lambda is 200.0
the regulation term lambda/alpha is 2831.0835693187933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12182280655807248
the lambda is 200.0
the regulation term lambda/alpha is 1641.7287177229884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06657317337364818
the lambda is 200.0
the regulation term lambda/alpha is 3004.2131066440415
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 505757.2242773641
the lambda is 200.0
the regulation term lambda/alpha is 0.00039544664989365986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 496215126.02137864
the lambda is 200.0
the regulation term lambda/alpha is 4.0305099444184077e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 344.15064833038247
the lambda is 200.0
the regulation term lambda/alpha is 0.581140849131864
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.866399072401943
the lambda is 200.0
the regulation term lambda/alpha is 69.77395503844025
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05956260688984356
the lambda is 200.0
the regulation term lambda/alpha is 3357.8113928069765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09696104787649007
the lambda is 200.0
the regulation term lambda/alpha is 2062.6839785679913
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07146127191444507
the lambda is 200.0
the regulation term lambda/alpha is 2798.718727529006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8914337937098061
the lambda is 200.0
the regulation term lambda/alpha is 224.35765999814365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 43.043385451833025
the lambda is 200.0
the regulation term lambda/alpha is 4.646474665051768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.422479729388745
the lambda is 200.0
the regulation term lambda/alpha is 82.56003035801056
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07354293692167534
the lambda is 200.0
the regulation term lambda/alpha is 2719.4997694068693
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999679.6782485
the lambda is 200.0
the regulation term lambda/alpha is 4.0000025625756537e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09365229577528388
the lambda is 200.0
the regulation term lambda/alpha is 2135.5589667539443
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12854376492617256
the lambda is 200.0
the regulation term lambda/alpha is 1555.8903235397486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 96.3315031095612
the lambda is 200.0
the regulation term lambda/alpha is 2.0761640122290315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6189817762136591
the lambda is 200.0
the regulation term lambda/alpha is 323.1112896786873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12616453155607096
the lambda is 200.0
the regulation term lambda/alpha is 1585.2315823890215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23010865336058617
the lambda is 200.0
the regulation term lambda/alpha is 869.1546236055489
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 5.380537327646055
the lambda is 200.0
the regulation term lambda/alpha is 37.17100873408465
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6279505352482304
the lambda is 200.0
the regulation term lambda/alpha is 318.4964241187238
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.40914712183383595
the lambda is 200.0
the regulation term lambda/alpha is 488.821720420716
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06954990145247945
the lambda is 200.0
the regulation term lambda/alpha is 2875.633118425792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  27  iterations
the alpha is 6487113.159696657
the lambda is 200.0
the regulation term lambda/alpha is 3.083035474740388e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1335734638950787
the lambda is 200.0
the regulation term lambda/alpha is 1497.3033877230212
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1377772290449746
the lambda is 200.0
the regulation term lambda/alpha is 175.78133477664662
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1845754129390809
the lambda is 200.0
the regulation term lambda/alpha is 1083.567940146015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059973654582642304
the lambda is 200.0
the regulation term lambda/alpha is 3334.7976105809034
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3724736023462743
the lambda is 200.0
the regulation term lambda/alpha is 536.9508033325479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 26439.46635481499
the lambda is 200.0
the regulation term lambda/alpha is 0.007564449195608566
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 68.8475304597465
the lambda is 200.0
the regulation term lambda/alpha is 2.904969846622679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12500058866989033
the lambda is 200.0
the regulation term lambda/alpha is 1599.9924650608884
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.178236136269427
the lambda is 200.0
the regulation term lambda/alpha is 1122.106909328836
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10988719798098044
the lambda is 200.0
the regulation term lambda/alpha is 1820.0482283169738
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23964329122556297
the lambda is 200.0
the regulation term lambda/alpha is 834.5737490800486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26870245531203973
the lambda is 200.0
the regulation term lambda/alpha is 744.3177241076688
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09206966669830821
the lambda is 200.0
the regulation term lambda/alpha is 2172.2681005825234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499984207.752494
the lambda is 200.0
the regulation term lambda/alpha is 4.0001263419704953e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12228503644581937
the lambda is 200.0
the regulation term lambda/alpha is 1635.5230845322083
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6948367647494081
the lambda is 200.0
the regulation term lambda/alpha is 287.83738878890455
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0690030109406065
the lambda is 200.0
the regulation term lambda/alpha is 2898.4242466194346
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0883946493538849
the lambda is 200.0
the regulation term lambda/alpha is 2262.580387635308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09644198419157787
the lambda is 200.0
the regulation term lambda/alpha is 2073.7856201994823
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1386132022332695
the lambda is 200.0
the regulation term lambda/alpha is 1442.8640041330539
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 228.17402601443857
the lambda is 200.0
the regulation term lambda/alpha is 0.8765239562689938
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2543325615995933
the lambda is 200.0
the regulation term lambda/alpha is 786.3719798287906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.574493080283447
the lambda is 200.0
the regulation term lambda/alpha is 30.42059631940131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19499228132552862
the lambda is 200.0
the regulation term lambda/alpha is 1025.681625141414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05590520217552956
the lambda is 200.0
the regulation term lambda/alpha is 3577.484602811125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 652.7663823309008
the lambda is 200.0
the regulation term lambda/alpha is 0.30638832729994336
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.97997217277156
the lambda is 200.0
the regulation term lambda/alpha is 18.214982410972365
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6780514395839613
the lambda is 200.0
the regulation term lambda/alpha is 294.96287202445285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0562931927814881
the lambda is 200.0
the regulation term lambda/alpha is 3552.8274400127752
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 580.3541314485082
the lambda is 200.0
the regulation term lambda/alpha is 0.34461717279554677
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9792768862612458
the lambda is 200.0
the regulation term lambda/alpha is 101.04700428134132
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06813815255984706
the lambda is 200.0
the regulation term lambda/alpha is 2935.213129301328
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999430.9064361
the lambda is 200.0
the regulation term lambda/alpha is 4.0000045527536934e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 54.92776162667065
the lambda is 200.0
the regulation term lambda/alpha is 3.6411460084491822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 465.83637234321475
the lambda is 200.0
the regulation term lambda/alpha is 0.4293353028531782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2261850.4194608694
the lambda is 200.0
the regulation term lambda/alpha is 8.842317700552084e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12194034546224604
the lambda is 200.0
the regulation term lambda/alpha is 1640.1462472641758
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07099785606849074
the lambda is 200.0
the regulation term lambda/alpha is 2816.9864707895194
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07759110702733663
the lambda is 200.0
the regulation term lambda/alpha is 2577.6149827265217
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07054670836829209
the lambda is 200.0
the regulation term lambda/alpha is 2835.001159173742
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07461015010932108
the lambda is 200.0
the regulation term lambda/alpha is 2680.6004237621005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.341119462739727
the lambda is 200.0
the regulation term lambda/alpha is 59.8601762763668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15820439686195756
the lambda is 200.0
the regulation term lambda/alpha is 1264.1873675262736
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 38.52629127827093
the lambda is 200.0
the regulation term lambda/alpha is 5.191260133383284
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999969
the lambda is 200.0
the regulation term lambda/alpha is 3.9999999920000246e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09605294783315478
the lambda is 200.0
the regulation term lambda/alpha is 2082.184925208153
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1379400729563895
the lambda is 200.0
the regulation term lambda/alpha is 175.75617974362768
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.04532079953284
the lambda is 200.0
the regulation term lambda/alpha is 65.67452599104847
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 1659295.3687411987
the lambda is 200.0
the regulation term lambda/alpha is 0.00012053309119504577
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5478570640768654
the lambda is 200.0
the regulation term lambda/alpha is 365.0587226378076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.060337142928877506
the lambda is 200.0
the regulation term lambda/alpha is 3314.7078282402317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12065324531331059
the lambda is 200.0
the regulation term lambda/alpha is 1657.6429376652316
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14482881226516975
the lambda is 200.0
the regulation term lambda/alpha is 1380.9406904050024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 3667.997966121081
the lambda is 200.0
the regulation term lambda/alpha is 0.05452565727878541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 40.81643859951555
the lambda is 200.0
the regulation term lambda/alpha is 4.899986546165098
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.931394805290598
the lambda is 200.0
the regulation term lambda/alpha is 68.22690674044959
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 22.706184256729852
the lambda is 200.0
the regulation term lambda/alpha is 8.80817303949792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06326043764142458
the lambda is 200.0
the regulation term lambda/alpha is 3161.533613372203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4647316153538654
the lambda is 200.0
the regulation term lambda/alpha is 430.3559159574541
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06097638741666239
the lambda is 200.0
the regulation term lambda/alpha is 3279.958168616399
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06884471752426566
the lambda is 200.0
the regulation term lambda/alpha is 2905.0885411724744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10099005864395504
the lambda is 200.0
the regulation term lambda/alpha is 1980.3929484297948
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07823723951913551
the lambda is 200.0
the regulation term lambda/alpha is 2556.327411719113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 7894.203846051793
the lambda is 200.0
the regulation term lambda/alpha is 0.025335043773923826
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06355723068522462
the lambda is 200.0
the regulation term lambda/alpha is 3146.7702076342152
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 39.80879089984162
the lambda is 200.0
the regulation term lambda/alpha is 5.024015939172765
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06999150240742172
the lambda is 200.0
the regulation term lambda/alpha is 2857.489739765788
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38561923345797977
the lambda is 200.0
the regulation term lambda/alpha is 518.6463294543985
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1670817297249843
the lambda is 200.0
the regulation term lambda/alpha is 1197.0189698730017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7315485316326461
the lambda is 200.0
the regulation term lambda/alpha is 273.3926613913728
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499354757.3586344
the lambda is 200.0
the regulation term lambda/alpha is 4.0051686111475426e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12794687608756375
the lambda is 200.0
the regulation term lambda/alpha is 1563.1487545121838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3903652893311138
the lambda is 200.0
the regulation term lambda/alpha is 512.3406344419033
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.9353544741303107
the lambda is 200.0
the regulation term lambda/alpha is 213.82267956323113
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05092029978769389
the lambda is 200.0
the regulation term lambda/alpha is 3927.706648112366
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.2954978970522581
the lambda is 200.0
the regulation term lambda/alpha is 676.8237675973392
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 275783484.2528061
the lambda is 200.0
the regulation term lambda/alpha is 7.252065892991016e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9740999497040266
the lambda is 200.0
the regulation term lambda/alpha is 101.31199285526837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0514132670111456
the lambda is 200.0
the regulation term lambda/alpha is 190.22016011700174
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.7736819217616726
the lambda is 200.0
the regulation term lambda/alpha is 112.75978942230756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18515382564106103
the lambda is 200.0
the regulation term lambda/alpha is 1080.1829198372586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 14.855898165137006
the lambda is 200.0
the regulation term lambda/alpha is 13.462666328000878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22880438094874717
the lambda is 200.0
the regulation term lambda/alpha is 874.1091371183167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 280.31806713404967
the lambda is 200.0
the regulation term lambda/alpha is 0.713475239198046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.15891182850473182
the lambda is 200.0
the regulation term lambda/alpha is 1258.5595539481487
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 492285974.4354733
the lambda is 200.0
the regulation term lambda/alpha is 4.0626792227698356e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07428747248843158
the lambda is 200.0
the regulation term lambda/alpha is 2692.2439719717886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06760077980898108
the lambda is 200.0
the regulation term lambda/alpha is 2958.5457529504574
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09633170106851296
the lambda is 200.0
the regulation term lambda/alpha is 2076.1597457700464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2548003605438839
the lambda is 200.0
the regulation term lambda/alpha is 784.9282456786567
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05831514060220223
the lambda is 200.0
the regulation term lambda/alpha is 3429.6410492140208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.293497724448262
the lambda is 200.0
the regulation term lambda/alpha is 681.43628839363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4132017739389079
the lambda is 200.0
the regulation term lambda/alpha is 484.0250275149354
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06609675495371727
the lambda is 200.0
the regulation term lambda/alpha is 3025.8671570192123
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08392691928558138
the lambda is 200.0
the regulation term lambda/alpha is 2383.0256335211384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07143998794092371
the lambda is 200.0
the regulation term lambda/alpha is 2799.5525442331705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.0202107851962845
the lambda is 200.0
the regulation term lambda/alpha is 39.83896464860892
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.056747287207197905
the lambda is 200.0
the regulation term lambda/alpha is 3524.397549961326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2814459910186723
the lambda is 200.0
the regulation term lambda/alpha is 710.6159134692779
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2302171973153073
the lambda is 200.0
the regulation term lambda/alpha is 89.67736426781937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.057328228310087145
the lambda is 200.0
the regulation term lambda/alpha is 3488.682729181937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20963236238282737
the lambda is 200.0
the regulation term lambda/alpha is 954.0511671321201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11442937152467794
the lambda is 200.0
the regulation term lambda/alpha is 1747.8030101464624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4013273336672453
the lambda is 200.0
the regulation term lambda/alpha is 498.34632037753767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.41645461399649203
the lambda is 200.0
the regulation term lambda/alpha is 480.24440906226744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.054870547353011986
the lambda is 200.0
the regulation term lambda/alpha is 3644.9426814223584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18440927590519657
the lambda is 200.0
the regulation term lambda/alpha is 1084.544142469376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09587502897631019
the lambda is 200.0
the regulation term lambda/alpha is 2086.0489132099046
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.1662885043523574
the lambda is 200.0
the regulation term lambda/alpha is 63.16543793311362
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07709800335327195
the lambda is 200.0
the regulation term lambda/alpha is 2594.1009014666297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0986523160100986
the lambda is 200.0
the regulation term lambda/alpha is 2027.321892569931
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 12956476.657383779
the lambda is 200.0
the regulation term lambda/alpha is 1.5436295320766992e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09935858634486998
the lambda is 200.0
the regulation term lambda/alpha is 2012.9110865749176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.257636183718525
the lambda is 200.0
the regulation term lambda/alpha is 159.02850330581975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5314557321369654
the lambda is 200.0
the regulation term lambda/alpha is 376.3248524873498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0523333593575287
the lambda is 200.0
the regulation term lambda/alpha is 3821.65415053234
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06248077836464183
the lambda is 200.0
the regulation term lambda/alpha is 3200.984450494313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 52.54319586897807
the lambda is 200.0
the regulation term lambda/alpha is 3.8063919921947806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6228482777301232
the lambda is 200.0
the regulation term lambda/alpha is 123.24010983931281
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1735901444663463
the lambda is 200.0
the regulation term lambda/alpha is 1152.1391413944802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5427720783386816
the lambda is 200.0
the regulation term lambda/alpha is 368.47879244665756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 11.468338670275925
the lambda is 200.0
the regulation term lambda/alpha is 17.43931756378695
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0875025825834354
the lambda is 200.0
the regulation term lambda/alpha is 2285.6468243013987
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 51.54794493729788
the lambda is 200.0
the regulation term lambda/alpha is 3.8798830922023546
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10565214944689938
the lambda is 200.0
the regulation term lambda/alpha is 1893.004553594243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08026637383158891
the lambda is 200.0
the regulation term lambda/alpha is 2491.703442585191
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6735541713869208
the lambda is 200.0
the regulation term lambda/alpha is 296.9323159088725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06409099590637847
the lambda is 200.0
the regulation term lambda/alpha is 3120.5631488727668
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 474821060.69996816
the lambda is 200.0
the regulation term lambda/alpha is 4.212113079086372e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2925117898082016
the lambda is 200.0
the regulation term lambda/alpha is 683.7331245046189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.50594484994519
the lambda is 200.0
the regulation term lambda/alpha is 15.992394209292915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06004439904385699
the lambda is 200.0
the regulation term lambda/alpha is 3330.86854369078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20058859186179925
the lambda is 200.0
the regulation term lambda/alpha is 997.0656762862926
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 490459668.52249163
the lambda is 200.0
the regulation term lambda/alpha is 4.0778072660388044e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07184733870820464
the lambda is 200.0
the regulation term lambda/alpha is 2783.6800025713533
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  20  iterations
the alpha is 51637904.30364664
the lambda is 200.0
the regulation term lambda/alpha is 3.873123874740132e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06588979533305223
the lambda is 200.0
the regulation term lambda/alpha is 3035.371395358914
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13433096651639348
the lambda is 200.0
the regulation term lambda/alpha is 1488.8599790994015
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 139259559.85201368
the lambda is 200.0
the regulation term lambda/alpha is 1.4361671127822972e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07074304382640471
the lambda is 200.0
the regulation term lambda/alpha is 2827.133088742647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.857680830936828
the lambda is 200.0
the regulation term lambda/alpha is 51.84462083957073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499993133.0422001
the lambda is 200.0
the regulation term lambda/alpha is 4.0000549364168913e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 12516196.74666005
the lambda is 200.0
the regulation term lambda/alpha is 1.5979294992575923e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11991170337003405
the lambda is 200.0
the regulation term lambda/alpha is 1667.8939117629116
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24552661410248122
the lambda is 200.0
the regulation term lambda/alpha is 814.5756448077816
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.13426887765383558
the lambda is 200.0
the regulation term lambda/alpha is 1489.5484604826197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09776626433902803
the lambda is 200.0
the regulation term lambda/alpha is 2045.6954282967374
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.312233607678218
the lambda is 200.0
the regulation term lambda/alpha is 640.5460369471699
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4255437444983604
the lambda is 200.0
the regulation term lambda/alpha is 469.9869345647744
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09494404360345934
the lambda is 200.0
the regulation term lambda/alpha is 2106.5039196699317
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06662905400901378
the lambda is 200.0
the regulation term lambda/alpha is 3001.6935250640568
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15982479332674288
the lambda is 200.0
the regulation term lambda/alpha is 1251.370302673401
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12648643367495951
the lambda is 200.0
the regulation term lambda/alpha is 1581.1972413891683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06587058074962127
the lambda is 200.0
the regulation term lambda/alpha is 3036.256819417065
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07612108456186643
the lambda is 200.0
the regulation term lambda/alpha is 2627.392937858795
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12918506192839438
the lambda is 200.0
the regulation term lambda/alpha is 1548.1666147348942
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.0721246536165796
the lambda is 200.0
the regulation term lambda/alpha is 65.10152501935595
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.39122014487957946
the lambda is 200.0
the regulation term lambda/alpha is 511.22111838479464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10185555606950303
the lambda is 200.0
the regulation term lambda/alpha is 1963.5649513662886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.432117537651207
the lambda is 200.0
the regulation term lambda/alpha is 462.83703523608045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06388579558345048
the lambda is 200.0
the regulation term lambda/alpha is 3130.5863560664448
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07610819825785899
the lambda is 200.0
the regulation term lambda/alpha is 2627.8377964275073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0568284080559462
the lambda is 200.0
the regulation term lambda/alpha is 3519.366578122421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 129.78087266946872
the lambda is 200.0
the regulation term lambda/alpha is 1.541059139811521
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 24837.01973931273
the lambda is 200.0
the regulation term lambda/alpha is 0.008052495915338602
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 5345.187225574263
the lambda is 200.0
the regulation term lambda/alpha is 0.037416837158311685
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0150654426871815
the lambda is 200.0
the regulation term lambda/alpha is 197.03163125181393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 21.391466916971385
the lambda is 200.0
the regulation term lambda/alpha is 9.349522441648247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.139370462045471
the lambda is 200.0
the regulation term lambda/alpha is 1435.0243018836231
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.909580607036014
the lambda is 200.0
the regulation term lambda/alpha is 219.88155689876223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 3884.948154527142
the lambda is 200.0
the regulation term lambda/alpha is 0.051480738492465955
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11539622538773528
the lambda is 200.0
the regulation term lambda/alpha is 1733.1589428336424
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2781978296081434
the lambda is 200.0
the regulation term lambda/alpha is 718.9128695997045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23556981618731912
the lambda is 200.0
the regulation term lambda/alpha is 849.0052046437269
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.0604222299578048
the lambda is 200.0
the regulation term lambda/alpha is 97.0674831071376
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16291020726619812
the lambda is 200.0
the regulation term lambda/alpha is 1227.6701586487857
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0873942210640591
the lambda is 200.0
the regulation term lambda/alpha is 2288.480835058899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.311781930944396
the lambda is 200.0
the regulation term lambda/alpha is 152.4643656709109
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08678760034312206
the lambda is 200.0
the regulation term lambda/alpha is 2304.4766672806163
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08283763149444784
the lambda is 200.0
the regulation term lambda/alpha is 2414.3616420684953
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 29628.539042235283
the lambda is 200.0
the regulation term lambda/alpha is 0.00675024845858587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08535106179019866
the lambda is 200.0
the regulation term lambda/alpha is 2343.263174529917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2194109004476326
the lambda is 200.0
the regulation term lambda/alpha is 911.5317406380844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06441923175002544
the lambda is 200.0
the regulation term lambda/alpha is 3104.662917684066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999485.2040928
the lambda is 200.0
the regulation term lambda/alpha is 4.0000041183714976e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23498963523419952
the lambda is 200.0
the regulation term lambda/alpha is 851.1013679419199
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6867379787584271
the lambda is 200.0
the regulation term lambda/alpha is 291.2318907446849
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 216.33634902437765
the lambda is 200.0
the regulation term lambda/alpha is 0.9244863422256571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 390082761.24384445
the lambda is 200.0
the regulation term lambda/alpha is 5.127117111309057e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 471336591.2563535
the lambda is 200.0
the regulation term lambda/alpha is 4.243252141042085e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  21  iterations
the alpha is 3800988.801558476
the lambda is 200.0
the regulation term lambda/alpha is 5.261788719766717e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16819778285593887
the lambda is 200.0
the regulation term lambda/alpha is 1189.0763160136282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20534851705403104
the lambda is 200.0
the regulation term lambda/alpha is 973.9539533532461
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 144.6610859554655
the lambda is 200.0
the regulation term lambda/alpha is 1.3825418126722124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.264136505897488
the lambda is 200.0
the regulation term lambda/alpha is 31.927784429937994
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 670.6451244532713
the lambda is 200.0
the regulation term lambda/alpha is 0.2982203146008787
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 14.613720611871237
the lambda is 200.0
the regulation term lambda/alpha is 13.68576869038628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11472876506823233
the lambda is 200.0
the regulation term lambda/alpha is 1743.2419836564486
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499382283.78045255
the lambda is 200.0
the regulation term lambda/alpha is 4.0049478424814846e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0753402947938736
the lambda is 200.0
the regulation term lambda/alpha is 2654.6219462929853
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9004259132015233
the lambda is 200.0
the regulation term lambda/alpha is 222.11710821258674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05697974653273668
the lambda is 200.0
the regulation term lambda/alpha is 3510.0191238143475
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4783717673489222
the lambda is 200.0
the regulation term lambda/alpha is 418.08487383855345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.7728011672101998
the lambda is 200.0
the regulation term lambda/alpha is 72.12922526328353
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5479081411435766
the lambda is 200.0
the regulation term lambda/alpha is 365.0246911509041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06206142234169244
the lambda is 200.0
the regulation term lambda/alpha is 3222.613863067095
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 12.73273455253571
the lambda is 200.0
the regulation term lambda/alpha is 15.707544924838649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9999329
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992000537e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09181031041611612
the lambda is 200.0
the regulation term lambda/alpha is 2178.4045723571867
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05482412694093895
the lambda is 200.0
the regulation term lambda/alpha is 3648.028909159947
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.9001747334885453
the lambda is 200.0
the regulation term lambda/alpha is 68.96136211745599
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06746041086903286
the lambda is 200.0
the regulation term lambda/alpha is 2964.7017772879935
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10954835853160584
the lambda is 200.0
the regulation term lambda/alpha is 1825.6777434259584
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 47.65262181446568
the lambda is 200.0
the regulation term lambda/alpha is 4.197040842342214
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07217658649352132
the lambda is 200.0
the regulation term lambda/alpha is 2770.981695261417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06520489950578516
the lambda is 200.0
the regulation term lambda/alpha is 3067.2541713258133
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1684633190024833
the lambda is 200.0
the regulation term lambda/alpha is 1187.2020638335628
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12683285517799098
the lambda is 200.0
the regulation term lambda/alpha is 1576.878480889907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.060283904885153984
the lambda is 200.0
the regulation term lambda/alpha is 3317.635119705951
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.987201880628943
the lambda is 200.0
the regulation term lambda/alpha is 40.10264769445782
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07944974521453992
the lambda is 200.0
the regulation term lambda/alpha is 2517.3145547532663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17677971186955718
the lambda is 200.0
the regulation term lambda/alpha is 1131.3515441612253
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2470565875142934
the lambda is 200.0
the regulation term lambda/alpha is 160.3776460526557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.256798065557024
the lambda is 200.0
the regulation term lambda/alpha is 31.965231721473916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08389351731946192
the lambda is 200.0
the regulation term lambda/alpha is 2383.9744284222934
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06749686023082048
the lambda is 200.0
the regulation term lambda/alpha is 2963.100791889514
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06017629206996243
the lambda is 200.0
the regulation term lambda/alpha is 3323.5680218959837
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2216835491122303
the lambda is 200.0
the regulation term lambda/alpha is 902.1869272705811
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 561767.5625059236
the lambda is 200.0
the regulation term lambda/alpha is 0.00035601913201937694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.057461874865674736
the lambda is 200.0
the regulation term lambda/alpha is 3480.5686460375387
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09088695920878913
the lambda is 200.0
the regulation term lambda/alpha is 2200.53571756705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06477033222981572
the lambda is 200.0
the regulation term lambda/alpha is 3087.8334742883103
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9774814349332506
the lambda is 200.0
the regulation term lambda/alpha is 101.1387497586044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2288248670032106
the lambda is 200.0
the regulation term lambda/alpha is 874.0308805563244
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.1916800609634361
the lambda is 200.0
the regulation term lambda/alpha is 167.83028142495414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 3825.944343468294
the lambda is 200.0
the regulation term lambda/alpha is 0.05227467575199906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0800153952007319
the lambda is 200.0
the regulation term lambda/alpha is 2499.5189925422073
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.398268562508673
the lambda is 200.0
the regulation term lambda/alpha is 502.173705954119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.318619036316455
the lambda is 200.0
the regulation term lambda/alpha is 86.25824116312617
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6617307905809577
the lambda is 200.0
the regulation term lambda/alpha is 302.23771184111393
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05712068380770831
the lambda is 200.0
the regulation term lambda/alpha is 3501.3586439770606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16562625703923334
the lambda is 200.0
the regulation term lambda/alpha is 1207.5380049953326
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0241815222610708
the lambda is 200.0
the regulation term lambda/alpha is 195.27788351274182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08098716652663655
the lambda is 200.0
the regulation term lambda/alpha is 2469.5270692575755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2651474234509219
the lambda is 200.0
the regulation term lambda/alpha is 754.2973542679719
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8826844852957344
the lambda is 200.0
the regulation term lambda/alpha is 226.5815286568587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8751685235619958
the lambda is 200.0
the regulation term lambda/alpha is 228.52741456695256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 162.19983605651507
the lambda is 200.0
the regulation term lambda/alpha is 1.2330468689889074
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.3239602385250657
the lambda is 200.0
the regulation term lambda/alpha is 151.0619384029285
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06634097844167205
the lambda is 200.0
the regulation term lambda/alpha is 3014.72792078041
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.7487888653740966
the lambda is 200.0
the regulation term lambda/alpha is 53.35056392407464
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 252.7435505610379
the lambda is 200.0
the regulation term lambda/alpha is 0.7913159388480607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999987.9293514
the lambda is 200.0
the regulation term lambda/alpha is 4.000000096565191e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06475609758654911
the lambda is 200.0
the regulation term lambda/alpha is 3088.5122398348976
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0640414219082178
the lambda is 200.0
the regulation term lambda/alpha is 3122.978754073167
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2795540611890549
the lambda is 200.0
the regulation term lambda/alpha is 715.4251279674502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18187575644031148
the lambda is 200.0
the regulation term lambda/alpha is 1099.6517838024035
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09051506813507429
the lambda is 200.0
the regulation term lambda/alpha is 2209.576859640021
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07426549293117769
the lambda is 200.0
the regulation term lambda/alpha is 2693.0407663939063
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 61298.81958105656
the lambda is 200.0
the regulation term lambda/alpha is 0.0032627055686698225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06988725080118527
the lambda is 200.0
the regulation term lambda/alpha is 2861.7522896838295
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4834411350450024
the lambda is 200.0
the regulation term lambda/alpha is 413.70083243202396
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.212164916600443
the lambda is 200.0
the regulation term lambda/alpha is 32.19489544869462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1383552448403036
the lambda is 200.0
the regulation term lambda/alpha is 1445.5541619029318
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 410.24210897324656
the lambda is 200.0
the regulation term lambda/alpha is 0.4875169945390534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09666466470420379
the lambda is 200.0
the regulation term lambda/alpha is 2069.0083663146697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.33611941652057664
the lambda is 200.0
the regulation term lambda/alpha is 595.0266190223389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10527082978238796
the lambda is 200.0
the regulation term lambda/alpha is 1899.8615325198134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10897670967110153
the lambda is 200.0
the regulation term lambda/alpha is 1835.2545291889653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07569423946693911
the lambda is 200.0
the regulation term lambda/alpha is 2642.2089898578583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 50.31700258612246
the lambda is 200.0
the regulation term lambda/alpha is 3.9747995651704504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1148398349826491
the lambda is 200.0
the regulation term lambda/alpha is 1741.5559681901107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07859031476421875
the lambda is 200.0
the regulation term lambda/alpha is 2544.8428422767643
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2291.1614244869793
the lambda is 200.0
the regulation term lambda/alpha is 0.0872919724740838
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06379831237771601
the lambda is 200.0
the regulation term lambda/alpha is 3134.8791613155213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07588567804766563
the lambda is 200.0
the regulation term lambda/alpha is 2635.543427237682
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 159515043.86806864
the lambda is 200.0
the regulation term lambda/alpha is 1.2538002382108585e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07471941419320349
the lambda is 200.0
the regulation term lambda/alpha is 2676.6805141546743
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 113.6447901995724
the lambda is 200.0
the regulation term lambda/alpha is 1.7598694990661572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.4721504117727893
the lambda is 200.0
the regulation term lambda/alpha is 80.901226336216
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.11225978995778675
the lambda is 200.0
the regulation term lambda/alpha is 1781.581811931114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 32.450215027606035
the lambda is 200.0
the regulation term lambda/alpha is 6.163287356643279
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.3328114995010929
the lambda is 200.0
the regulation term lambda/alpha is 600.9407736806379
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24182289235702958
the lambda is 200.0
the regulation term lambda/alpha is 827.0515584799066
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999562.9787203
the lambda is 200.0
the regulation term lambda/alpha is 4.0000034961732934e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.19375110438863472
the lambda is 200.0
the regulation term lambda/alpha is 1032.2521806060572
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 220.87630000162042
the lambda is 200.0
the regulation term lambda/alpha is 0.905484200878649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.49013495989629086
the lambda is 200.0
the regulation term lambda/alpha is 408.0508765224962
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10620252540302395
the lambda is 200.0
the regulation term lambda/alpha is 1883.1943895969287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10510530058863327
the lambda is 200.0
the regulation term lambda/alpha is 1902.8536037661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2662676244022611
the lambda is 200.0
the regulation term lambda/alpha is 751.1239883142986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 27.51863088132613
the lambda is 200.0
the regulation term lambda/alpha is 7.267803433335705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 460.0368500473071
the lambda is 200.0
the regulation term lambda/alpha is 0.4347477815732225
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.140563041329316
the lambda is 200.0
the regulation term lambda/alpha is 48.30260957354982
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 462927066.0329578
the lambda is 200.0
the regulation term lambda/alpha is 4.3203349874073065e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07302917659951298
the lambda is 200.0
the regulation term lambda/alpha is 2738.631452697137
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09770809948967016
the lambda is 200.0
the regulation term lambda/alpha is 2046.9132144070031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 2.3407255522434545
the lambda is 200.0
the regulation term lambda/alpha is 85.44359239737064
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 461698281.1473978
the lambda is 200.0
the regulation term lambda/alpha is 4.331833324199657e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6082022971928709
the lambda is 200.0
the regulation term lambda/alpha is 328.83795559979075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4711128544566313
the lambda is 200.0
the regulation term lambda/alpha is 424.52673092665776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11441344075115002
the lambda is 200.0
the regulation term lambda/alpha is 1748.0463718856363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09837041922122518
the lambda is 200.0
the regulation term lambda/alpha is 2033.131520464705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07976789739938281
the lambda is 200.0
the regulation term lambda/alpha is 2507.27431110084
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12055032984662913
the lambda is 200.0
the regulation term lambda/alpha is 1659.058090130912
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06627832013590872
the lambda is 200.0
the regulation term lambda/alpha is 3017.577989150673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27593741835637414
the lambda is 200.0
the regulation term lambda/alpha is 724.8020264569531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09419946272812363
the lambda is 200.0
the regulation term lambda/alpha is 2123.1543599907304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 26.306127397039273
the lambda is 200.0
the regulation term lambda/alpha is 7.602791432634429
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1236969246819487
the lambda is 200.0
the regulation term lambda/alpha is 1616.8550714922205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 8.76659693904635
the lambda is 200.0
the regulation term lambda/alpha is 22.813869668080855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.056658425778014665
the lambda is 200.0
the regulation term lambda/alpha is 3529.925112702418
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06631812215986765
the lambda is 200.0
the regulation term lambda/alpha is 3015.7669349846246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06067737034325921
the lambda is 200.0
the regulation term lambda/alpha is 3296.1217480021937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11889980716481913
the lambda is 200.0
the regulation term lambda/alpha is 1682.088514430975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05726409024825104
the lambda is 200.0
the regulation term lambda/alpha is 3492.5901927885493
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 351.2348692419925
the lambda is 200.0
the regulation term lambda/alpha is 0.5694195466174081
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.6270131
the lambda is 200.0
the regulation term lambda/alpha is 3.999999994983895e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07062717441467231
the lambda is 200.0
the regulation term lambda/alpha is 2831.771222019203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1044330043961799
the lambda is 200.0
the regulation term lambda/alpha is 1915.1033828470024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.22095246158843523
the lambda is 200.0
the regulation term lambda/alpha is 905.1720834526702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 24.2514543412055
the lambda is 200.0
the regulation term lambda/alpha is 8.246928088769556
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 33.79255694902129
the lambda is 200.0
the regulation term lambda/alpha is 5.918463059830471
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.902937266748075
the lambda is 200.0
the regulation term lambda/alpha is 25.307046386602106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06699569643171663
the lambda is 200.0
the regulation term lambda/alpha is 2985.2663775776114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.7156011388236947
the lambda is 200.0
the regulation term lambda/alpha is 53.8270908333603
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14684312623362278
the lambda is 200.0
the regulation term lambda/alpha is 1361.9976986992658
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26524697372385814
the lambda is 200.0
the regulation term lambda/alpha is 754.0142577016351
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.065484848967234
the lambda is 200.0
the regulation term lambda/alpha is 3054.141578612665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000000.9994577
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992004338e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 3258.39098521404
the lambda is 200.0
the regulation term lambda/alpha is 0.06137998813143114
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5052222618391329
the lambda is 200.0
the regulation term lambda/alpha is 395.86537472032796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.4793487509391152
the lambda is 200.0
the regulation term lambda/alpha is 417.23275508316306
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 11.197653811991648
the lambda is 200.0
the regulation term lambda/alpha is 17.860884374351578
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.507194331731058
the lambda is 200.0
the regulation term lambda/alpha is 394.32617339669105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1384.8102023020717
the lambda is 200.0
the regulation term lambda/alpha is 0.144424123730115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.74732548523607
the lambda is 200.0
the regulation term lambda/alpha is 11.942205349523654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.26854243734737454
the lambda is 200.0
the regulation term lambda/alpha is 744.761245096204
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5212486367408504
the lambda is 200.0
the regulation term lambda/alpha is 383.6940490636413
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 344.08160750025337
the lambda is 200.0
the regulation term lambda/alpha is 0.5812574564882917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499330109.8678043
the lambda is 200.0
the regulation term lambda/alpha is 4.0053663107347806e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06064862202140991
the lambda is 200.0
the regulation term lambda/alpha is 3297.684157265715
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1759.5912521936198
the lambda is 200.0
the regulation term lambda/alpha is 0.11366276102513417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06598705326773446
the lambda is 200.0
the regulation term lambda/alpha is 3030.89757908304
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.966533429948793
the lambda is 200.0
the regulation term lambda/alpha is 33.520301586865735
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.18006729335998115
the lambda is 200.0
the regulation term lambda/alpha is 1110.6958752368785
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07010486475614905
the lambda is 200.0
the regulation term lambda/alpha is 2852.869065444671
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 3095348.7665223693
the lambda is 200.0
the regulation term lambda/alpha is 6.461307435307215e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1395591918821778
the lambda is 200.0
the regulation term lambda/alpha is 1433.0836779912645
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05773171765095514
the lambda is 200.0
the regulation term lambda/alpha is 3464.3001825997308
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09334286148752192
the lambda is 200.0
the regulation term lambda/alpha is 2142.6384065452717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499901357.8423249
the lambda is 200.0
the regulation term lambda/alpha is 4.000789292976525e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7384821428778702
the lambda is 200.0
the regulation term lambda/alpha is 270.82577680294145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08050061823357596
the lambda is 200.0
the regulation term lambda/alpha is 2484.4529692889005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3864732965330967
the lambda is 200.0
the regulation term lambda/alpha is 517.5001786517286
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09613938193991164
the lambda is 200.0
the regulation term lambda/alpha is 2080.3129369502562
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 39.67789051814524
the lambda is 200.0
the regulation term lambda/alpha is 5.040590550259654
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.14338130037555916
the lambda is 200.0
the regulation term lambda/alpha is 1394.8820346596053
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06962712435917215
the lambda is 200.0
the regulation term lambda/alpha is 2872.443775909776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 44.77368271479478
the lambda is 200.0
the regulation term lambda/alpha is 4.466909753079414
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10132004675088764
the lambda is 200.0
the regulation term lambda/alpha is 1973.9430291789502
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27084445824448306
the lambda is 200.0
the regulation term lambda/alpha is 738.4312062219345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07411597039857203
the lambda is 200.0
the regulation term lambda/alpha is 2698.4737422240287
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1055.0258583063983
the lambda is 200.0
the regulation term lambda/alpha is 0.1895688133379537
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5156042275208209
the lambda is 200.0
the regulation term lambda/alpha is 387.8944146010201
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5750009689002773
the lambda is 200.0
the regulation term lambda/alpha is 347.8255008552622
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 1730.2468020934564
the lambda is 200.0
the regulation term lambda/alpha is 0.11559044626351364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 22578.628903662433
the lambda is 200.0
the regulation term lambda/alpha is 0.008857933794534282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4038681747434186
the lambda is 200.0
the regulation term lambda/alpha is 495.21109239930075
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07226137660674233
the lambda is 200.0
the regulation term lambda/alpha is 2767.73027849208
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1330698967860833
the lambda is 200.0
the regulation term lambda/alpha is 1502.9695282736282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3958164299111137
the lambda is 200.0
the regulation term lambda/alpha is 505.28473526203265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05237810191344014
the lambda is 200.0
the regulation term lambda/alpha is 3818.3896073691117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.894326208986016
the lambda is 200.0
the regulation term lambda/alpha is 18.358179860176495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9325305272822624
the lambda is 200.0
the regulation term lambda/alpha is 103.49125003539378
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9180604804397765
the lambda is 200.0
the regulation term lambda/alpha is 104.27199874017717
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 16.148363220929483
the lambda is 200.0
the regulation term lambda/alpha is 12.385156146400341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 568297.2501557944
the lambda is 200.0
the regulation term lambda/alpha is 0.0003519285021090134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1671917693782582
the lambda is 200.0
the regulation term lambda/alpha is 1196.2311347247949
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09225871187842306
the lambda is 200.0
the regulation term lambda/alpha is 2167.81695655535
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.81737502045076
the lambda is 200.0
the regulation term lambda/alpha is 41.516385822353115
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05993618690496722
the lambda is 200.0
the regulation term lambda/alpha is 3336.8822797671996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09426093243382558
the lambda is 200.0
the regulation term lambda/alpha is 2121.769802568067
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 11.069795874004384
the lambda is 200.0
the regulation term lambda/alpha is 18.06718048610702
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08703445709683166
the lambda is 200.0
the regulation term lambda/alpha is 2297.94045566903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2118056854864489
the lambda is 200.0
the regulation term lambda/alpha is 944.2617158300776
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 2583.580340369107
the lambda is 200.0
the regulation term lambda/alpha is 0.07741195304630112
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19948492141348512
the lambda is 200.0
the regulation term lambda/alpha is 1002.5820427071139
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05595914882662326
the lambda is 200.0
the regulation term lambda/alpha is 3574.0357777716504
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.789486516163652
the lambda is 200.0
the regulation term lambda/alpha is 41.75812987990176
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 20.583779778023523
the lambda is 200.0
the regulation term lambda/alpha is 9.716388445504649
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07959877444834954
the lambda is 200.0
the regulation term lambda/alpha is 2512.6014990315844
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.059453739651607475
the lambda is 200.0
the regulation term lambda/alpha is 3363.959965714159
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 85885.04558243291
the lambda is 200.0
the regulation term lambda/alpha is 0.0023286941125045917
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5444536219391896
the lambda is 200.0
the regulation term lambda/alpha is 367.34074665103094
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499962656.0452091
the lambda is 200.0
the regulation term lambda/alpha is 4.000298773953129e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16484125020560356
the lambda is 200.0
the regulation term lambda/alpha is 1213.2885412513165
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0682413530595501
the lambda is 200.0
the regulation term lambda/alpha is 2930.7742451336226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07882789575276788
the lambda is 200.0
the regulation term lambda/alpha is 2537.172888989332
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3733111729826226
the lambda is 200.0
the regulation term lambda/alpha is 535.7460865745635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09372734964885565
the lambda is 200.0
the regulation term lambda/alpha is 2133.8488792149674
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5314611379513878
the lambda is 200.0
the regulation term lambda/alpha is 376.3210246584272
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09581479319952634
the lambda is 200.0
the regulation term lambda/alpha is 2087.3603472014665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0683475134137063
the lambda is 200.0
the regulation term lambda/alpha is 2926.222038092352
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 360.039619942084
the lambda is 200.0
the regulation term lambda/alpha is 0.5554944203978773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12738837447641835
the lambda is 200.0
the regulation term lambda/alpha is 1570.001978767876
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07309156196153178
the lambda is 200.0
the regulation term lambda/alpha is 2736.2939665355675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06715408885700277
the lambda is 200.0
the regulation term lambda/alpha is 2978.225204214712
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06439261925280317
the lambda is 200.0
the regulation term lambda/alpha is 3105.9460279881923
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.789324488116124
the lambda is 200.0
the regulation term lambda/alpha is 52.77985578359131
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3491738274755453
the lambda is 200.0
the regulation term lambda/alpha is 572.7806160214203
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 15.705492995030115
the lambda is 200.0
the regulation term lambda/alpha is 12.73439809010061
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1740387298435023
the lambda is 200.0
the regulation term lambda/alpha is 1149.1694991100107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 5386.037133354558
the lambda is 200.0
the regulation term lambda/alpha is 0.03713305256687583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07824505220683534
the lambda is 200.0
the regulation term lambda/alpha is 2556.0721650656446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23262769603837508
the lambda is 200.0
the regulation term lambda/alpha is 859.7428569597633
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05973172877481337
the lambda is 200.0
the regulation term lambda/alpha is 3348.304227958868
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 3811.732751434471
the lambda is 200.0
the regulation term lambda/alpha is 0.052469575660763185
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 98500921.82128426
the lambda is 200.0
the regulation term lambda/alpha is 2.0304378507530232e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06440133496195148
the lambda is 200.0
the regulation term lambda/alpha is 3105.5256869777722
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 14409.650041000732
the lambda is 200.0
the regulation term lambda/alpha is 0.01387958759795878
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.069395988379802
the lambda is 200.0
the regulation term lambda/alpha is 32.95220815760105
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  32  iterations
the alpha is 22172.635030860234
the lambda is 200.0
the regulation term lambda/alpha is 0.009020127725984609
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07439896324943357
the lambda is 200.0
the regulation term lambda/alpha is 2688.2095027247933
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12328138030119201
the lambda is 200.0
the regulation term lambda/alpha is 1622.3050026806538
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4179527485653682
the lambda is 200.0
the regulation term lambda/alpha is 478.52299257871687
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25993884104304754
the lambda is 200.0
the regulation term lambda/alpha is 769.4117554631965
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 10.971742512212963
the lambda is 200.0
the regulation term lambda/alpha is 18.228645065027205
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13782171855290185
the lambda is 200.0
the regulation term lambda/alpha is 1451.1500952096421
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.6749515836195157
the lambda is 200.0
the regulation term lambda/alpha is 119.40643655371012
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07397204089698786
the lambda is 200.0
the regulation term lambda/alpha is 2703.724239250292
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 435170971.1962698
the lambda is 200.0
the regulation term lambda/alpha is 4.595894791654117e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06832481454936397
the lambda is 200.0
the regulation term lambda/alpha is 2927.1941873402684
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.18213355542414617
the lambda is 200.0
the regulation term lambda/alpha is 1098.0952935017772
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1921812953448669
the lambda is 200.0
the regulation term lambda/alpha is 1040.684004346534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06246573955233337
the lambda is 200.0
the regulation term lambda/alpha is 3201.755097007078
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38373327323739204
the lambda is 200.0
the regulation term lambda/alpha is 521.1953561198545
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10818394014887456
the lambda is 200.0
the regulation term lambda/alpha is 1848.703233814327
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.063657826493785
the lambda is 200.0
the regulation term lambda/alpha is 3141.797497901162
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09009129690949229
the lambda is 200.0
the regulation term lambda/alpha is 2219.970261954653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.5955718386129296
the lambda is 200.0
the regulation term lambda/alpha is 335.8117141095766
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 12335964.778631069
the lambda is 200.0
the regulation term lambda/alpha is 1.6212757055406747e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0884838920494794
the lambda is 200.0
the regulation term lambda/alpha is 2260.2984042356748
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06919212376608347
the lambda is 200.0
the regulation term lambda/alpha is 2890.502402789894
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 1031.6601426569275
the lambda is 200.0
the regulation term lambda/alpha is 0.19386229217397305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.057607514149543126
the lambda is 200.0
the regulation term lambda/alpha is 3471.7693160795093
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.08853929829086331
the lambda is 200.0
the regulation term lambda/alpha is 2258.8839516547055
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09332174649512903
the lambda is 200.0
the regulation term lambda/alpha is 2143.123200233282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10759338560119382
the lambda is 200.0
the regulation term lambda/alpha is 1858.8503269273542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06026585484144189
the lambda is 200.0
the regulation term lambda/alpha is 3318.6287745556006
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8242792848301739
the lambda is 200.0
the regulation term lambda/alpha is 242.636207994971
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06780381035279391
the lambda is 200.0
the regulation term lambda/alpha is 2949.6867352936138
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6917332117104016
the lambda is 200.0
the regulation term lambda/alpha is 289.12880950948363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.2023790228565225
the lambda is 200.0
the regulation term lambda/alpha is 90.81089037099375
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1657172170876813
the lambda is 200.0
the regulation term lambda/alpha is 1206.8752029198004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09986652361457052
the lambda is 200.0
the regulation term lambda/alpha is 2002.6730956600557
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3066227666156689
the lambda is 200.0
the regulation term lambda/alpha is 652.2672866320021
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.060540656153273885
the lambda is 200.0
the regulation term lambda/alpha is 3303.565119836986
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10389718679406529
the lambda is 200.0
the regulation term lambda/alpha is 1924.9799361403325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11312272664356662
the lambda is 200.0
the regulation term lambda/alpha is 1767.9913306030107
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3592813799200884
the lambda is 200.0
the regulation term lambda/alpha is 556.666755300495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.37052622308249167
the lambda is 200.0
the regulation term lambda/alpha is 539.7728623257881
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09016871899678247
the lambda is 200.0
the regulation term lambda/alpha is 2218.064116083724
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  22  iterations
the alpha is 55251344.566738226
the lambda is 200.0
the regulation term lambda/alpha is 3.6198214101092063e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  3  iterations
the alpha is 493183960.16557145
the lambda is 200.0
the regulation term lambda/alpha is 4.055281926298984e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06422891501389197
the lambda is 200.0
the regulation term lambda/alpha is 3113.8623462149767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.1652309483953602
the lambda is 200.0
the regulation term lambda/alpha is 63.18654254957024
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07245089774705561
the lambda is 200.0
the regulation term lambda/alpha is 2760.4902936917433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07770109007002829
the lambda is 200.0
the regulation term lambda/alpha is 2573.966463272903
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09204672179332801
the lambda is 200.0
the regulation term lambda/alpha is 2172.8095917316737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 35627.1512586422
the lambda is 200.0
the regulation term lambda/alpha is 0.005613696097901886
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 11.058223501775613
the lambda is 200.0
the regulation term lambda/alpha is 18.086087694636134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 1099.665691250423
the lambda is 200.0
the regulation term lambda/alpha is 0.18187345626158552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07109614989601447
the lambda is 200.0
the regulation term lambda/alpha is 2813.091852266555
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06953037780833872
the lambda is 200.0
the regulation term lambda/alpha is 2876.4405761076446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06820500164962778
the lambda is 200.0
the regulation term lambda/alpha is 2932.3362680556647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06423257743141493
the lambda is 200.0
the regulation term lambda/alpha is 3113.6847997973036
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24871609764126137
the lambda is 200.0
the regulation term lambda/alpha is 804.1296960539819
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0850060989908256
the lambda is 200.0
the regulation term lambda/alpha is 2352.7723583878997
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5644475886260905
the lambda is 200.0
the regulation term lambda/alpha is 354.3287349084361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.25441192174570554
the lambda is 200.0
the regulation term lambda/alpha is 786.1266823805045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06439081407502328
the lambda is 200.0
the regulation term lambda/alpha is 3106.033102283428
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1034346662205419
the lambda is 200.0
the regulation term lambda/alpha is 1933.5877158781843
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 500000000.9864544
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992108365e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.283756589447949
the lambda is 200.0
the regulation term lambda/alpha is 37.851857218293276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09624814639969737
the lambda is 200.0
the regulation term lambda/alpha is 2077.9620957004618
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11411880503552395
the lambda is 200.0
the regulation term lambda/alpha is 1752.5595359830675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19120609944818892
the lambda is 200.0
the regulation term lambda/alpha is 1045.991736546009
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.158037593421402
the lambda is 200.0
the regulation term lambda/alpha is 63.33046839487462
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.27214534076028235
the lambda is 200.0
the regulation term lambda/alpha is 734.9014296598554
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1582653050076431
the lambda is 200.0
the regulation term lambda/alpha is 1263.7008470703126
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.38053292676354117
the lambda is 200.0
the regulation term lambda/alpha is 525.5786974888449
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 296944373.6389843
the lambda is 200.0
the regulation term lambda/alpha is 6.735268210306411e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06140171785727559
the lambda is 200.0
the regulation term lambda/alpha is 3257.2378587987937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 18.32030252985836
the lambda is 200.0
the regulation term lambda/alpha is 10.91685029076571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 15.207904345273773
the lambda is 200.0
the regulation term lambda/alpha is 13.151055889048571
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 4.0283754504217955
the lambda is 200.0
the regulation term lambda/alpha is 49.647805290606364
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11678785683751758
the lambda is 200.0
the regulation term lambda/alpha is 1712.5068086338142
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  19  iterations
the alpha is 8005440.824237534
the lambda is 200.0
the regulation term lambda/alpha is 2.4983008979901954e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.056325460148552595
the lambda is 200.0
the regulation term lambda/alpha is 3550.7921190971297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.959731623268969
the lambda is 200.0
the regulation term lambda/alpha is 208.39159109790958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 7.694826302634265
the lambda is 200.0
the regulation term lambda/alpha is 25.99148988347294
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 16986.082149150763
the lambda is 200.0
the regulation term lambda/alpha is 0.011774345504975626
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 18.87048554918166
the lambda is 200.0
the regulation term lambda/alpha is 10.598561413734966
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19777187639643495
the lambda is 200.0
the regulation term lambda/alpha is 1011.2661296649619
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07289555201170597
the lambda is 200.0
the regulation term lambda/alpha is 2743.651628673899
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1976036359790297
the lambda is 200.0
the regulation term lambda/alpha is 1012.1271251366277
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.548302275275543
the lambda is 200.0
the regulation term lambda/alpha is 364.7623017786901
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5814569619498506
the lambda is 200.0
the regulation term lambda/alpha is 343.96354861643147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11396281889581157
the lambda is 200.0
the regulation term lambda/alpha is 1754.9583446408635
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05734212643701557
the lambda is 200.0
the regulation term lambda/alpha is 3487.837170107032
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06828439031834024
the lambda is 200.0
the regulation term lambda/alpha is 2928.9270808101915
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06930989670959804
the lambda is 200.0
the regulation term lambda/alpha is 2885.590795755781
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0766085199596031
the lambda is 200.0
the regulation term lambda/alpha is 2610.6756807919433
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 59.17850940367512
the lambda is 200.0
the regulation term lambda/alpha is 3.3796052319556993
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07732191798718281
the lambda is 200.0
the regulation term lambda/alpha is 2586.5887086912767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.05600963021522017
the lambda is 200.0
the regulation term lambda/alpha is 3570.814505139361
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07672457447287225
the lambda is 200.0
the regulation term lambda/alpha is 2606.726741387333
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.878399386622865
the lambda is 200.0
the regulation term lambda/alpha is 51.56766492121147
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.231720679781721
the lambda is 200.0
the regulation term lambda/alpha is 89.61694974281527
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 18475832.53465244
the lambda is 200.0
the regulation term lambda/alpha is 1.0824951981183472e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09702790354565922
the lambda is 200.0
the regulation term lambda/alpha is 2061.2627160998522
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12183232352103693
the lambda is 200.0
the regulation term lambda/alpha is 1641.600473666299
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499982180.96866345
the lambda is 200.0
the regulation term lambda/alpha is 4.0001425573311593e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24228997811840156
the lambda is 200.0
the regulation term lambda/alpha is 825.4571714157512
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07985519124368028
the lambda is 200.0
the regulation term lambda/alpha is 2504.533479729509
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0745222632526348
the lambda is 200.0
the regulation term lambda/alpha is 2683.7617548193402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07471420271453431
the lambda is 200.0
the regulation term lambda/alpha is 2676.8672184611773
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.841816109654609
the lambda is 200.0
the regulation term lambda/alpha is 29.232004601494104
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07289812260918196
the lambda is 200.0
the regulation term lambda/alpha is 2743.55487962606
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08949844097803158
the lambda is 200.0
the regulation term lambda/alpha is 2234.675797862136
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2681422445802934
the lambda is 200.0
the regulation term lambda/alpha is 745.8727747768642
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.24233265105775798
the lambda is 200.0
the regulation term lambda/alpha is 825.3118146771384
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.28005721718596716
the lambda is 200.0
the regulation term lambda/alpha is 714.1397818974737
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.19730628008706155
the lambda is 200.0
the regulation term lambda/alpha is 1013.6524793420151
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 23.429537618367505
the lambda is 200.0
the regulation term lambda/alpha is 8.536233333226802
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07192001063627432
the lambda is 200.0
the regulation term lambda/alpha is 2780.867219437339
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06087482620909856
the lambda is 200.0
the regulation term lambda/alpha is 3285.4303240722406
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5300949972643199
the lambda is 200.0
the regulation term lambda/alpha is 377.2908649056247
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5402136326019139
the lambda is 200.0
the regulation term lambda/alpha is 370.22390389651827
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1735599113508835
the lambda is 200.0
the regulation term lambda/alpha is 1152.3398372546005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06574440819868975
the lambda is 200.0
the regulation term lambda/alpha is 3042.0838133574666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11236243479019893
the lambda is 200.0
the regulation term lambda/alpha is 1779.954309226534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09850772714851257
the lambda is 200.0
the regulation term lambda/alpha is 2030.2975795845466
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 747.8052643925513
the lambda is 200.0
the regulation term lambda/alpha is 0.26744930735739303
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5300876713540125
the lambda is 200.0
the regulation term lambda/alpha is 377.29607913561995
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09903746198543238
the lambda is 200.0
the regulation term lambda/alpha is 2019.4378570547215
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 104.7498573405038
the lambda is 200.0
the regulation term lambda/alpha is 1.9093104761935145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.060728236050058955
the lambda is 200.0
the regulation term lambda/alpha is 3293.360930739661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09465664717974767
the lambda is 200.0
the regulation term lambda/alpha is 2112.8996849023315
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.12013203434346915
the lambda is 200.0
the regulation term lambda/alpha is 1664.8348718392679
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2056713134992393
the lambda is 200.0
the regulation term lambda/alpha is 972.4253547918325
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06500484809771612
the lambda is 200.0
the regulation term lambda/alpha is 3076.6935982891223
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06750592853921458
the lambda is 200.0
the regulation term lambda/alpha is 2962.7027481566874
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1503896606918024
the lambda is 200.0
the regulation term lambda/alpha is 1329.8786570831182
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 353.9802439840717
the lambda is 200.0
the regulation term lambda/alpha is 0.5650032830900007
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499980229.8336898
the lambda is 200.0
the regulation term lambda/alpha is 4.0001581675844804e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 62.48292871466842
the lambda is 200.0
the regulation term lambda/alpha is 3.200874288612663
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07467581301545193
the lambda is 200.0
the regulation term lambda/alpha is 2678.2433551626145
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 194146465.38222253
the lambda is 200.0
the regulation term lambda/alpha is 1.0301500962495168e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 2535.8831563591293
the lambda is 200.0
the regulation term lambda/alpha is 0.07886798707522004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09223759443146437
the lambda is 200.0
the regulation term lambda/alpha is 2168.3132700149363
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.651495143232893
the lambda is 200.0
the regulation term lambda/alpha is 30.068427578042552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4151537586019728
the lambda is 200.0
the regulation term lambda/alpha is 481.7492214776003
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.29706780915088904
the lambda is 200.0
the regulation term lambda/alpha is 673.2469619366076
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.059600229962060915
the lambda is 200.0
the regulation term lambda/alpha is 3355.691750305525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09441563014978976
the lambda is 200.0
the regulation term lambda/alpha is 2118.2933342996425
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  29  iterations
the alpha is 15599663.046243662
the lambda is 200.0
the regulation term lambda/alpha is 1.2820789744439975e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.8114676356957738
the lambda is 200.0
the regulation term lambda/alpha is 246.46700768110696
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6294560491711756
the lambda is 200.0
the regulation term lambda/alpha is 317.7346540133282
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.512996147237587
the lambda is 200.0
the regulation term lambda/alpha is 30.70783330415875
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.9186480541808741
the lambda is 200.0
the regulation term lambda/alpha is 217.7112323808631
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21406223667712276
the lambda is 200.0
the regulation term lambda/alpha is 934.3077186550503
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.473766820818241
the lambda is 200.0
the regulation term lambda/alpha is 57.57438835600666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.199913335240387
the lambda is 200.0
the regulation term lambda/alpha is 1000.4335116489792
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999750.6488773
the lambda is 200.0
the regulation term lambda/alpha is 4.0000019948099763e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1422934203348693
the lambda is 200.0
the regulation term lambda/alpha is 1405.5463670022525
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08595196603077664
the lambda is 200.0
the regulation term lambda/alpha is 2326.88103874653
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 470410297.15393496
the lambda is 200.0
the regulation term lambda/alpha is 4.251607611696325e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5611083571024429
the lambda is 200.0
the regulation term lambda/alpha is 356.43739300693665
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.124572317146684
the lambda is 200.0
the regulation term lambda/alpha is 177.8453879315197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3405778040756183
the lambda is 200.0
the regulation term lambda/alpha is 587.2373290527005
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 13300.762554642442
the lambda is 200.0
the regulation term lambda/alpha is 0.015036731854911044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.21534277270549923
the lambda is 200.0
the regulation term lambda/alpha is 928.7518568060705
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05368403583598114
the lambda is 200.0
the regulation term lambda/alpha is 3725.502318995774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 141.89541069220093
the lambda is 200.0
the regulation term lambda/alpha is 1.4094888553784122
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1192927503422837
the lambda is 200.0
the regulation term lambda/alpha is 1676.5478155725725
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08715240700420865
the lambda is 200.0
the regulation term lambda/alpha is 2294.8304800157944
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.5923400943919885
the lambda is 200.0
the regulation term lambda/alpha is 337.6438669161697
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2778106421003232
the lambda is 200.0
the regulation term lambda/alpha is 719.9148257530604
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 154057.30638654987
the lambda is 200.0
the regulation term lambda/alpha is 0.0012982182065300683
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 19.869897417591613
the lambda is 200.0
the regulation term lambda/alpha is 10.065477229033505
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  16  iterations
the alpha is 11571.174195512498
the lambda is 200.0
the regulation term lambda/alpha is 0.01728433058051822
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08230288362677751
the lambda is 200.0
the regulation term lambda/alpha is 2430.0485133297243
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06307012347394216
the lambda is 200.0
the regulation term lambda/alpha is 3171.073544554441
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0515060621828245
the lambda is 200.0
the regulation term lambda/alpha is 3883.0380643366893
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 470.27230713001745
the lambda is 200.0
the regulation term lambda/alpha is 0.42528551430247297
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6112696234119182
the lambda is 200.0
the regulation term lambda/alpha is 327.1878600537383
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.16605521716438384
the lambda is 200.0
the regulation term lambda/alpha is 1204.4186470938341
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  18  iterations
the alpha is 58168201.91775542
the lambda is 200.0
the regulation term lambda/alpha is 3.438304664854209e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 2941878.605569072
the lambda is 200.0
the regulation term lambda/alpha is 6.798377051364169e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0641337464613552
the lambda is 200.0
the regulation term lambda/alpha is 3118.4830301550082
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 9272350.688757854
the lambda is 200.0
the regulation term lambda/alpha is 2.156950343158262e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07099353765364863
the lambda is 200.0
the regulation term lambda/alpha is 2817.157823233524
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07663705921936464
the lambda is 200.0
the regulation term lambda/alpha is 2609.703478150477
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1280679038407596
the lambda is 200.0
the regulation term lambda/alpha is 1561.6715351934017
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.106111267679373
the lambda is 200.0
the regulation term lambda/alpha is 1884.8139728602835
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2218316940329789
the lambda is 200.0
the regulation term lambda/alpha is 901.5844235957859
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.061446213821920365
the lambda is 200.0
the regulation term lambda/alpha is 3254.8791464943256
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 3397.980264990657
the lambda is 200.0
the regulation term lambda/alpha is 0.05885849369420924
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10484838399255736
the lambda is 200.0
the regulation term lambda/alpha is 1907.5162857464447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0977923236873691
the lambda is 200.0
the regulation term lambda/alpha is 2045.1502987021472
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05903189670723415
the lambda is 200.0
the regulation term lambda/alpha is 3387.9988812131583
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06813089864003516
the lambda is 200.0
the regulation term lambda/alpha is 2935.525642435542
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1662180043066183
the lambda is 200.0
the regulation term lambda/alpha is 1203.2390885349873
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06296644903991243
the lambda is 200.0
the regulation term lambda/alpha is 3176.2947259933044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.061062470627882566
the lambda is 200.0
the regulation term lambda/alpha is 3275.334226464713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.211209308367879
the lambda is 200.0
the regulation term lambda/alpha is 946.9279623398278
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1607495435536925
the lambda is 200.0
the regulation term lambda/alpha is 1244.1714954742458
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.07010969860464324
the lambda is 200.0
the regulation term lambda/alpha is 2852.6723688804213
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06542292870267086
the lambda is 200.0
the regulation term lambda/alpha is 3057.0322051607436
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13560124479731178
the lambda is 200.0
the regulation term lambda/alpha is 1474.9127141048552
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06789598685359173
the lambda is 200.0
the regulation term lambda/alpha is 2945.682201089031
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20424050564940394
the lambda is 200.0
the regulation term lambda/alpha is 979.2376853165301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.16148941427217914
the lambda is 200.0
the regulation term lambda/alpha is 1238.4712700915118
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08296255394374628
the lambda is 200.0
the regulation term lambda/alpha is 2410.7261709374607
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15324323412653837
the lambda is 200.0
the regulation term lambda/alpha is 1305.1147160914975
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.44846543914337705
the lambda is 200.0
the regulation term lambda/alpha is 445.9652462451155
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1623764109684822
the lambda is 200.0
the regulation term lambda/alpha is 1231.7060021656757
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0921473932883383
the lambda is 200.0
the regulation term lambda/alpha is 2170.435786221106
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  11  iterations
the alpha is 4704.288593554465
the lambda is 200.0
the regulation term lambda/alpha is 0.04251439851586233
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1913885086036088
the lambda is 200.0
the regulation term lambda/alpha is 1044.9948194864028
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.5019585365525921
the lambda is 200.0
the regulation term lambda/alpha is 398.43928419582767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 1554.0391868743723
the lambda is 200.0
the regulation term lambda/alpha is 0.1286968833792786
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15591325518222704
the lambda is 200.0
the regulation term lambda/alpha is 1282.7645716603479
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2727151852425814
the lambda is 200.0
the regulation term lambda/alpha is 733.3658366771879
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999999.8479659
the lambda is 200.0
the regulation term lambda/alpha is 4.000000001216273e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1586367689074336
the lambda is 200.0
the regulation term lambda/alpha is 1260.7417648344963
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.11728827697811678
the lambda is 200.0
the regulation term lambda/alpha is 1705.2002566063381
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0909057730372027
the lambda is 200.0
the regulation term lambda/alpha is 2200.0802954302044
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.954638862327868
the lambda is 200.0
the regulation term lambda/alpha is 67.69016767160039
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05655286418372643
the lambda is 200.0
the regulation term lambda/alpha is 3536.514072041495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.246036079402098
the lambda is 200.0
the regulation term lambda/alpha is 38.12402297141548
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0978166872186998
the lambda is 200.0
the regulation term lambda/alpha is 2044.6409062375774
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.062653787873965
the lambda is 200.0
the regulation term lambda/alpha is 188.20805259644996
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12668652497934216
the lambda is 200.0
the regulation term lambda/alpha is 1578.6998659298022
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0849184493611283
the lambda is 200.0
the regulation term lambda/alpha is 2355.2008015298343
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.0883161100895036
the lambda is 200.0
the regulation term lambda/alpha is 183.77013640232883
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.062343406078868374
the lambda is 200.0
the regulation term lambda/alpha is 3208.037747359958
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.6493510736331145
the lambda is 200.0
the regulation term lambda/alpha is 75.49018398899301
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.06877718931288
the lambda is 200.0
the regulation term lambda/alpha is 39.45724827315045
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 487.79605574194267
the lambda is 200.0
the regulation term lambda/alpha is 0.410007415283008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06809770150759684
the lambda is 200.0
the regulation term lambda/alpha is 2936.9566897597624
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 3.7094765267259775
the lambda is 200.0
the regulation term lambda/alpha is 53.915963225280755
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.7617316543595273
the lambda is 200.0
the regulation term lambda/alpha is 262.5596545126673
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 34.363003369824945
the lambda is 200.0
the regulation term lambda/alpha is 5.820213031077058
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 48.44012622644975
the lambda is 200.0
the regulation term lambda/alpha is 4.128808398744305
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 6.6349273736322205
the lambda is 200.0
the regulation term lambda/alpha is 30.143510054807447
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.998384591417844
the lambda is 200.0
the regulation term lambda/alpha is 100.0808357204661
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  22  iterations
the alpha is 597213.888172805
the lambda is 200.0
the regulation term lambda/alpha is 0.0003348883941930862
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.151269957810845
the lambda is 200.0
the regulation term lambda/alpha is 1322.1395900043108
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 11185.81791559299
the lambda is 200.0
the regulation term lambda/alpha is 0.0178797832674534
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.5808743671100258
the lambda is 200.0
the regulation term lambda/alpha is 126.5122669840091
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.05501063619246771
the lambda is 200.0
the regulation term lambda/alpha is 3635.6605529929293
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10018035290355941
the lambda is 200.0
the regulation term lambda/alpha is 1996.3994356511596
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08639214307384906
the lambda is 200.0
the regulation term lambda/alpha is 2315.0253354525257
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 6.3787154208502015
the lambda is 200.0
the regulation term lambda/alpha is 31.35427539944125
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.638687761290458
the lambda is 200.0
the regulation term lambda/alpha is 54.9648700632313
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1953790084411884
the lambda is 200.0
the regulation term lambda/alpha is 1023.6514229224506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.13789323799492
the lambda is 200.0
the regulation term lambda/alpha is 63.73703145101197
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.075907012917167
the lambda is 200.0
the regulation term lambda/alpha is 39.40182503167218
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 7.822782620611475
the lambda is 200.0
the regulation term lambda/alpha is 25.566350197823446
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06387446839199162
the lambda is 200.0
the regulation term lambda/alpha is 3131.1415192157647
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.2107136287550933
the lambda is 200.0
the regulation term lambda/alpha is 949.1555016237442
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  8  iterations
the alpha is 9445.728078415646
the lambda is 200.0
the regulation term lambda/alpha is 0.02117359279662288
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.554173461143426
the lambda is 200.0
the regulation term lambda/alpha is 360.897830775476
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499940297.1076494
the lambda is 200.0
the regulation term lambda/alpha is 4.0004776801765814e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.09811783882793534
the lambda is 200.0
the regulation term lambda/alpha is 2038.3653206093402
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.13620017513503546
the lambda is 200.0
the regulation term lambda/alpha is 1468.4268930029664
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10950376114900279
the lambda is 200.0
the regulation term lambda/alpha is 1826.4212836293189
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.4295796455324002
the lambda is 200.0
the regulation term lambda/alpha is 465.5714070254183
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06035397540660574
the lambda is 200.0
the regulation term lambda/alpha is 3313.783369738226
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.8470974328926335
the lambda is 200.0
the regulation term lambda/alpha is 51.987245836303124
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06171783891872666
the lambda is 200.0
the regulation term lambda/alpha is 3240.5541656014666
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 390474601.7483776
the lambda is 200.0
the regulation term lambda/alpha is 5.121972059244977e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07921634279088119
the lambda is 200.0
the regulation term lambda/alpha is 2524.7315510130134
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.865339361584506
the lambda is 200.0
the regulation term lambda/alpha is 107.21909595587513
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 122402884.55298482
the lambda is 200.0
the regulation term lambda/alpha is 1.633948421480423e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.1423294607229295
the lambda is 200.0
the regulation term lambda/alpha is 1405.1904572963767
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10073686777319814
the lambda is 200.0
the regulation term lambda/alpha is 1985.3704450121054
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  9  iterations
the alpha is 324875376.45849615
the lambda is 200.0
the regulation term lambda/alpha is 6.156206794747667e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.12344385938271835
the lambda is 200.0
the regulation term lambda/alpha is 1620.1696949536497
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 1.655323519762721
the lambda is 200.0
the regulation term lambda/alpha is 120.82230307986478
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.46538904627006134
the lambda is 200.0
the regulation term lambda/alpha is 429.74797452353806
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999992.8982371
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000568141037e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08055026738310536
the lambda is 200.0
the regulation term lambda/alpha is 2482.9216152539807
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07899131155379562
the lambda is 200.0
the regulation term lambda/alpha is 2531.9240314650756
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 5.704440573816373
the lambda is 200.0
the regulation term lambda/alpha is 35.0604055580855
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.1029896821742734
the lambda is 200.0
the regulation term lambda/alpha is 1941.9421031086506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  4  iterations
the alpha is 452006406.08760107
the lambda is 200.0
the regulation term lambda/alpha is 4.4247160506224995e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10346464008886268
the lambda is 200.0
the regulation term lambda/alpha is 1933.0275524877484
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  15  iterations
the alpha is 16344.304682576185
the lambda is 200.0
the regulation term lambda/alpha is 0.01223667839557651
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14996149361302752
the lambda is 200.0
the regulation term lambda/alpha is 1333.675700217389
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.10118376699980962
the lambda is 200.0
the regulation term lambda/alpha is 1976.6016420437907
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  2  iterations
the alpha is 499999999.4853805
the lambda is 200.0
the regulation term lambda/alpha is 4.0000000041169563e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08500432055294321
the lambda is 200.0
the regulation term lambda/alpha is 2352.8215824680824
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.23957759548258994
the lambda is 200.0
the regulation term lambda/alpha is 834.8026016253008
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  13  iterations
the alpha is 893.0859429241201
the lambda is 200.0
the regulation term lambda/alpha is 0.22394261334487575
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15847225695666306
the lambda is 200.0
the regulation term lambda/alpha is 1262.0505559827636
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.0914106556437862
the lambda is 200.0
the regulation term lambda/alpha is 2187.9287331596265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 50329.166058412105
the lambda is 200.0
the regulation term lambda/alpha is 0.003973838941974117
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 38039.15580152848
the lambda is 200.0
the regulation term lambda/alpha is 0.005257740235969265
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.539600271821773
the lambda is 200.0
the regulation term lambda/alpha is 129.9038482003804
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  27  iterations
the alpha is 1389074.8819035946
the lambda is 200.0
the regulation term lambda/alpha is 0.00014398071882627312
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  17  iterations
the alpha is 5563213.941087808
the lambda is 200.0
the regulation term lambda/alpha is 3.5950441977950034e-05
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07491060501723404
the lambda is 200.0
the regulation term lambda/alpha is 2669.8489480092667
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 22.321816105337465
the lambda is 200.0
the regulation term lambda/alpha is 8.959844443489397
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.20070416402918057
the lambda is 200.0
the regulation term lambda/alpha is 996.4915325370221
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 11.007447270195923
the lambda is 200.0
the regulation term lambda/alpha is 18.16951697252511
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.6484641417434311
the lambda is 200.0
the regulation term lambda/alpha is 308.42106313278805
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 82.74453667035752
the lambda is 200.0
the regulation term lambda/alpha is 2.417078009594417
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  10  iterations
the alpha is 2160.6141945917393
the lambda is 200.0
the regulation term lambda/alpha is 0.0925662714336611
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  14  iterations
the alpha is 21164823.182718087
the lambda is 200.0
the regulation term lambda/alpha is 9.449641902196844e-06
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06004371273217416
the lambda is 200.0
the regulation term lambda/alpha is 3330.9066161864916
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08193978148731797
the lambda is 200.0
the regulation term lambda/alpha is 2440.8168580600195
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09532118950779074
the lambda is 200.0
the regulation term lambda/alpha is 2098.169368560531
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.17082121795649166
the lambda is 200.0
the regulation term lambda/alpha is 1170.8147406544088
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 27.003900677677354
the lambda is 200.0
the regulation term lambda/alpha is 7.406337417220952
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.07171111563424012
the lambda is 200.0
the regulation term lambda/alpha is 2788.967905897498
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.10053335823269963
the lambda is 200.0
the regulation term lambda/alpha is 1989.3894277068694
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.44464047964133374
the lambda is 200.0
the regulation term lambda/alpha is 449.8016018724356
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.0732249240092292
the lambda is 200.0
the regulation term lambda/alpha is 2731.3104479943495
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.229505133772895
the lambda is 200.0
the regulation term lambda/alpha is 89.7060055930657
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.3628020978682543
the lambda is 200.0
the regulation term lambda/alpha is 551.2647285535454
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06570019425284283
the lambda is 200.0
the regulation term lambda/alpha is 3044.131029967937
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.432028612205375
the lambda is 200.0
the regulation term lambda/alpha is 58.27457244637675
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14274976171440798
the lambda is 200.0
the regulation term lambda/alpha is 1401.0531268005168
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 3.0952856022183064
the lambda is 200.0
the regulation term lambda/alpha is 64.61439288725586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.14883868831196573
the lambda is 200.0
the regulation term lambda/alpha is 1343.7366471599119
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.08606164421461615
the lambda is 200.0
the regulation term lambda/alpha is 2323.9156284447713
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.06217569474933782
the lambda is 200.0
the regulation term lambda/alpha is 3216.6910366872908
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  1  iterations
the alpha is 500000001.0
the lambda is 200.0
the regulation term lambda/alpha is 3.999999992e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  12  iterations
the alpha is 22062.730158965198
the lambda is 200.0
the regulation term lambda/alpha is 0.009065061239428246
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.053516886944021284
the lambda is 200.0
the regulation term lambda/alpha is 3737.1381524713906
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06559186647526767
the lambda is 200.0
the regulation term lambda/alpha is 3049.1585427808004
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 4.3145663559664404
the lambda is 200.0
the regulation term lambda/alpha is 46.35460055526276
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  7  iterations
the alpha is 38.19731455059384
the lambda is 200.0
the regulation term lambda/alpha is 5.235970181492528
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.2546822138927023
the lambda is 200.0
the regulation term lambda/alpha is 159.40291317232587
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 414733323.62828827
the lambda is 200.0
the regulation term lambda/alpha is 4.822375936669449e-07
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.06501630352649282
the lambda is 200.0
the regulation term lambda/alpha is 3076.151505883506
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.09936148314119227
the lambda is 200.0
the regulation term lambda/alpha is 2012.8524019292345
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.15310176093129052
the lambda is 200.0
the regulation term lambda/alpha is 1306.3207031939796
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  5  iterations
the alpha is 0.7544282733866549
the lambda is 200.0
the regulation term lambda/alpha is 265.1014113007629
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 0.36142219213546195
the lambda is 200.0
the regulation term lambda/alpha is 553.3694508859586
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 2.8590475309373438
the lambda is 200.0
the regulation term lambda/alpha is 69.95336657954394
using Bay_info_prior_fixed_lambda_fit_alpha option for model regressor
Convergence after  6  iterations
the alpha is 1.9930801125388322
the lambda is 200.0
the regulation term lambda/alpha is 100.34719565047253
DescribeResult(nobs=5000, minmax=(0.0, 232.14424958464446), mean=1.043465456476096, variance=45.17909550769581, skewness=21.867828417367175, kurtosis=594.3365536509007)
---------------------------------------------------------------------------
FileNotFoundError                         Traceback (most recent call last)
<ipython-input-9-5d7f46da2041> in <module>
     77 print(stats.describe(lip_s))
     78 data=np.asarray((kw1_s,kw2_s,lip_s)).T
---> 79 np.savetxt("./figures/figures/robust_kw/3d_plot_BayesianRidge_inf_prior_fit_alpha_l200.csv", data, delimiter=",")

<__array_function__ internals> in savetxt(*args, **kwargs)

C:\ProgramData\Anaconda3\lib\site-packages\numpy\lib\npyio.py in savetxt(fname, X, fmt, delimiter, newline, header, footer, comments, encoding)
   1375     if _is_string_like(fname):
   1376         # datasource doesn't support creating a new file ...
-> 1377         open(fname, 'wt').close()
   1378         fh = np.lib._datasource.open(fname, 'wt', encoding=encoding)
   1379         own_fh = True

FileNotFoundError: [Errno 2] No such file or directory: './figures/figures/robust_kw/3d_plot_BayesianRidge_inf_prior_fit_alpha_l200.csv'
In [ ]:
from mpl_toolkits.mplot3d import Axes3D
import matplotlib.pyplot as plt
import math 

print(lip_s)
fig = plt.figure()
ax = fig.add_subplot(111, projection='3d')
Z=np.array([])
for i in np.asarray(lip_s):
    if i!=0:
        Z=np.append(Z,math.log(i))
    else:
        Z=np.append(Z,0)
print(Z)

pnt3d=ax.scatter(kw1_s, kw2_s, Z,c=lip_s,marker='^')

ax.set_xlabel('kw1')
ax.set_ylabel('kw2')
ax.set_zlabel('lip')
ax.set_zlim(-5, 8)
#ax.set_ylim(0, 10)
#ax.set_xlim(0, 10)
cbar=plt.colorbar(pnt3d)

plt.show()
In [10]:
np.savetxt("./figures/robust_kw/raw_data/3d_plot_BayesianRidge_inf_prior_fit_alpha_l200.csv", data, delimiter=",")
In [ ]: